#****************************************************************************** # ESO/DFS # # Who When What # -------- ---------- ------------------------------------------------------- # jknudstr 2007-06-26 Created ############################################################################### # Installation UNIX shell script to install a test/development NGAS system. ############################################################################### ############################################################################### # Base URL from where to obtain the distribution. ############################################################################### SRC_URL=file://$PWD/ ############################################################################### # Various parameters to update for the specific context. ############################################################################### INST_EMAIL=jknudstr@eso.org WATCHDOG_EMAIL=jknudstr@eso.org NGAMS_CFG_FILE_SRC=/opsw/packages/ngasCfg/cfg/NgamsCfg.Example.xml NGAMS_CFG_FILE=/opsw/packages/cfg/ngamsServer.conf PAR_ZOPE_URLS=http://$HOSTNAME:8080/NGAS/ESOECF ALIASES_FILE=/opsw/packages/ngasSys/common/DEV_etc_aliases NGAS_UTILS_RESOURCE_FILE=/opsw/packages/ngasSys/common/ngas_DEV ############################################################################### ############################################################################### # The installation commands - should not be changed! ############################################################################### rm -f ngasInstallSys wget ${SRC_URL}/ngasInstallSys python ./ngasInstallSys \ --installation-root=/opsw/packages/ \ --src-url=${SRC_URL}/ \ --post-installation-pi=Install_Post_Inst \ --notif-email=${INST_EMAIL} \ --Install_Configure_NGAS="NGAMS_CFG_FILE_SRC=${NGAMS_CFG_FILE_SRC},NGAMS_CFG_FILE=${NGAMS_CFG_FILE},NOTIF_EMAIL=${WATCHDOG_EMAIL}" \ --Install_Configure_Users \ --Install_Configure_Zope="PAR_ZOPE_URLS=${PAR_ZOPE_URLS}" \ --Install_Configure_aliases=${ALIASES_FILE} \ --Install_Configure_pydoc \ --Install_cfitsio \ --Install_chksum \ --Install_frameIngest \ --Install_ngams_bins \ --Install_ngasPlugIns \ --Install_Configure_ngasUtils=RESOURCE_FILE=${NGAS_UTILS_RESOURCE_FILE} ############################################################################### # EOF