diff --git a/openbis_all/source/bash/sprint_post_install.sh b/openbis_all/source/bash/sprint_post_install.sh index 450668bd7ad5c8ec167cfefb24a5b91157ffd78a..01165c34cd7e6aee7ae64542a00cce1cdaeb445d 100755 --- a/openbis_all/source/bash/sprint_post_install.sh +++ b/openbis_all/source/bash/sprint_post_install.sh @@ -126,6 +126,7 @@ case "$SERVER" in echo PLASMIDS:$PLASMIDS; restore_common create_individual_greeting_message + $BIN/sprint_post_install_plasmids.sh ;; *) echo Wrong Server! $SERVER is not in the list of openBIS Servers.; diff --git a/openbis_all/source/bash/sprint_post_install_plasmids.sh b/openbis_all/source/bash/sprint_post_install_plasmids.sh new file mode 100755 index 0000000000000000000000000000000000000000..e107fdb5b70caf53c4f19d02ae550daa5ac75bf0 --- /dev/null +++ b/openbis_all/source/bash/sprint_post_install_plasmids.sh @@ -0,0 +1,20 @@ +#!/bin/bash +# Finishes sprint installation of plasmids server +# Warning: all changes to this file should be transfered to SVN repository + +JETTY_WEBAPPS=~/sprint/openBIS-server/jetty/webapps/ +CONFIG_DIR=~/config + +function copy_rec_or_die { + SRC=$1 + DEST=$2 + if [ -f $SRC ]; then + echo Copy $SRC to $DEST + cp -r $SRC $DEST + else + echo -e "\n[ERROR]: cannot copy $SRC to $DEST, because $SRC does not exist" + exit 1 + fi +} + +copy_rec_or_die $CONFIG_DIR/PlasMapper $JETTY_WEBAPPS \ No newline at end of file