restore-config-from-backup.sh 1.61 KiB
#!/bin/bash
# Overrides all configuration files with those which can be found in the specified config backup directory.
# Assumes that openbis is installed in the parent directory of the directory where this script is located.
CONF=$1
if [ "$CONF" == "" ]; then
echo Error: directory from which configuration should be restored has not been specified!
exit 1
fi
BASE=`dirname "$0"`
if [ ${BASE#/} == ${BASE} ]; then
BASE="`pwd`/${BASE}"
fi
source $BASE/common-functions.sh
ROOT=$BASE/../servers
echo "Restoring configuration backup from $CONF to $ROOT ..."
# -- GLOBAL
if [ -e "$CONF/env" ]; then
source $CONF/env
if [ -n "$RESTORE_ENV_FROM_BACKUP" ]; then
cp $CONF/env $BASE/
fi
fi
# -- AS
cp $CONF/service.properties $ROOT/openBIS-server/jetty/etc/
cp $CONF/log.xml $ROOT/openBIS-server/jetty/etc/
cp $CONF/openbis.conf $ROOT/openBIS-server/jetty/etc/
cp $CONF/jetty.xml $ROOT/openBIS-server/jetty/etc/
cp $CONF/jetty.properties $ROOT/openBIS-server/jetty/etc/
cp $CONF/welcomePageSimple.html $ROOT/openBIS-server/jetty/webapps/openbis/
# not always present
copyIfExists $CONF/.keystore $ROOT/openBIS-server/jetty/etc/openBIS.keystore
copyIfExists $CONF/passwd $ROOT/openBIS-server/jetty/etc/
copyIfExists $CONF/web-client.properties $ROOT/openBIS-server/jetty/etc/
# -- DSS
cp $CONF/dss-service.properties $ROOT/datastore_server/etc/service.properties
cp $CONF/dss-log.xml $ROOT/datastore_server/etc/log.xml
cp $CONF/datastore_server.conf $ROOT/datastore_server/etc/
# not always present
copyIfExists $CONF/.keystore $ROOT/datastore_server/etc/openBIS.keystore
copyIfExists $CONF/ext-lib $ROOT/datastore_server