Skip to content
Snippets Groups Projects
Commit f6ab60e8 authored by buczekp's avatar buczekp
Browse files

[SE-260] deploy PlasMapper as post installation action

SVN: 17541
parent b84c7365
No related branches found
No related tags found
No related merge requests found
......@@ -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.;
......
#!/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
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment