Skip to content
Snippets Groups Projects
Commit 8ab13942 authored by kohleman's avatar kohleman
Browse files

added $BIN variable

SVN: 12655
parent df088e8b
No related branches found
No related tags found
No related merge requests found
#!/bin/sh #!/bin/sh
# Central post install script for all openBIS servers # Central post install script for all openBIS servers
export BIN=~/bin
export SERVER=`uname -n` export SERVER=`uname -n`
...@@ -26,15 +27,15 @@ case "$SERVER" in ...@@ -26,15 +27,15 @@ case "$SERVER" in
$SPRINT) $SPRINT)
echo SPRINT:$SPRINT; echo SPRINT:$SPRINT;
./sprint_post_install_sprint.sh $BIN/sprint_post_install_sprint.sh
;; ;;
$DEMO) $DEMO)
echo DEMO:$DEMO; echo DEMO:$DEMO;
./sprint_post_install_demo.sh $BIN/sprint_post_install_demo.sh
;; ;;
$YEASTX) $YEASTX)
echo YEASTX:$YEASTX; echo YEASTX:$YEASTX;
./sprint_post_install_yeastx.sh $BIN/sprint_post_install_yeastx.sh
;; ;;
$PHOSPHONETX) $PHOSPHONETX)
echo PHOSPHONETX:$PHOSPHONETX; echo PHOSPHONETX:$PHOSPHONETX;
...@@ -44,7 +45,7 @@ case "$SERVER" in ...@@ -44,7 +45,7 @@ case "$SERVER" in
;; ;;
$AGRONOMICS) $AGRONOMICS)
echo AGRONOMICS:$AGRONOMICS; echo AGRONOMICS:$AGRONOMICS;
./sprint_post_install_yeastx.sh $BIN/sprint_post_install_yeastx.sh
;; ;;
$BSSE) $BSSE)
echo BSSE:$BSSE; echo BSSE:$BSSE;
...@@ -52,11 +53,10 @@ case "$SERVER" in ...@@ -52,11 +53,10 @@ case "$SERVER" in
$BASYSBIO) $BASYSBIO)
echo BASYSBIO:$BASYSBIO; echo BASYSBIO:$BASYSBIO;
create_individual_greeting_message create_individual_greeting_message
./sprint_post_install_basysbio.sh $BIN/sprint_post_install_basysbio.sh
;; ;;
*) *)
echo Wrong Server! $SERVER is not in the list of openBIS Servers.; echo Wrong Server! $SERVER is not in the list of openBIS Servers.;
exit 1; exit 1;
;; ;;
esac esac
echo DONE \ 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