#****************************************************************************** # ESO/DFS # # Who When What # -------- ---------- ------------------------------------------------------- # jknudstr 2007-06-26 Created ############################################################################### # Installation UNIX shell script to install a test NGAS system for SEG. ############################################################################### ############################################################################### # Base URL from where to obtain the distribution. ############################################################################### SRC_URL=http://www.eso.org/~jknudstr/NGAS/RELEASES/V3_1_2 ############################################################################### # Various parameters to update for the specific context. ############################################################################### INST_EMAIL=mkleinge@eso.org WATCHDOG_EMAIL=mkleinge@eso.org # Please define the configuration file to use and remove the echo/return below NGAMS_CFG_FILE_SRC=/NGAS/cfg/SEG_VIRTUAL_VOLUMES.xml NGAMS_CFG_FILE=/opsw/packages/cfg/ngamsServer.conf PAR_ZOPE_URLS=http://$HOSTNAME:8080/NGAS/GARINT ALIASES_FILE=/opsw/packages/ngasSys/common/SEG_etc_aliases NGAS_UTILS_RESOURCE_FILE=/opsw/packages/ngasSys/common/ngas_SEG ############################################################################### ############################################################################### # Exception for SEG: Download the SEG configuration, didn't wanted to include # it in the distribution. ############################################################################### mkdir -p /NGAS/cfg cd /NGAS/cfg rm -f SEG_VIRTUAL_VOLUMES.xml wget ${SRC_URL}/SEG_VIRTUAL_VOLUMES.xml ############################################################################### ############################################################################### # 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_pydoc \ --Install_cfitsio \ --Install_chksum \ --Install_frameIngest \ --Install_ngams_bins \ --Install_ngasPlugIns \ --Install_Configure_ngasUtils=RESOURCE_FILE=${NGAS_UTILS_RESOURCE_FILE} ############################################################################### # EOF