Problem:
Is it possible to do a silent installation including casperm.sh of Enterprise Developer and COBOL Server products?
Resolution:
The $COBDIR/bin/casperms.sh script does not have a silent or non-interactive option.
It is only designed to run with user interaction.
To setup the product silently with the casperm settings you would need to install the product and pass in the command in arguments there.
[ as root ] setup* -silent –IacceptEULA -EssysLog=Y -ESadminID=tmfavaev -CASrtDir=/var/microfocus/mfcobol/es
The other option is to create a script, example below, to run the casperm.sh script and pass in responses to the prompts.
Create script “Run_casperm.sh”
#====== Start Run_casperm.sh ==========
$COBDIR/bin/casperm.sh <<EOT
Y
tmfavaev
/var/microfocus/mfcobol/es
EOT
#====== End Run_casperm.sh ==========
[ as root ] Run_casperm.sh
#MFDS
#EnterpriseDeveloper
