#!/bin/sh echo echo " Default configuration script." # If no package-specific command line switches needed, # this 'combined' script should be called # Paranoia:-) if test -z "$HERMES_TOP"; then HERMES_TOP=/hermes fi CONF_DIR=${HERMES_TOP}/conf #if test -d ./conf; then CONF_DIR="./conf"; fi #echo " Using configuration scripts in $CONF_DIR " #echo # Few default variables should be set before command line parsing . ${CONF_DIR}/defaults.conf # Command line parser without package-specific extensions while test $# -gt 0; do # Call standard parser . ${CONF_DIR}/cmd_line.conf shift done # 'Main' HERMES configuration script . ${CONF_DIR}/standard.conf # Create and execute config.status file . ${CONF_DIR}/config_status_shell echo echo "---> Done."