Skip to content
Snippets Groups Projects
Commit dc11addd authored by felmer's avatar felmer
Browse files

LMS-2471 more console output

SVN: 22670
parent f3c8fa0f
No related branches found
No related tags found
No related merge requests found
#! /bin/bash #! /bin/bash
# #
# Usage: install-servers.sh <servers> <config snapshot repository> <builds fetching script> <config file list 1> ... <config file list n> # Installs openBIS AS and DSS.
# #
# Usage: install-servers.sh <servers> <config snapshot repository> <builds fetching script> <config file list 1> ... <config file list n>
# #
# #
# #
# Dependencies:
# - servers-shutdown.sh
# - create-config-snapshot.sh
# - restore-config-snapshot.sh
# - install.sh of the openBIS AS distribution
# #
if [ $# -ne 4 ]; then if [ $# -ne 4 ]; then
echo "Usage: install-servers.sh <config snapshot repository> <builds fetching script> <config file list 1> ... <config file list n>" echo "Usage: install-servers.sh <config snapshot repository> <builds fetching script> <config file list 1> ... <config file list n>"
exit 1 exit 1
...@@ -30,18 +37,24 @@ rm -rf "$OPENBIS_AS" ...@@ -30,18 +37,24 @@ rm -rf "$OPENBIS_AS"
rm -rf "$OPENBIS_DSS" rm -rf "$OPENBIS_DSS"
"$FETCHING_SCRIPT" "$FETCHING_SCRIPT"
echo "unzip openBIS-server*.zip"
unzip -qu openBIS-server*.zip -d "$SERVERS" unzip -qu openBIS-server*.zip -d "$SERVERS"
echo "unzip datastore_server-*.zip"
unzip -qu datastore_server-*.zip -d "$SERVERS" unzip -qu datastore_server-*.zip -d "$SERVERS"
for file in datastore_server_plugin-*.zip; do for file in datastore_server_plugin-*.zip; do
if [ -f $file ]; then if [ -f $file ]; then
echo "unzip $file"
unzip -qu -d "$SERVERS/datastore_server" $file; unzip -qu -d "$SERVERS/datastore_server" $file;
fi fi
done done
rm -f openBIS-server*.zip rm -f openBIS-server*.zip
rm -f datastore_server*.zip rm -f datastore_server*.zip
echo "==== Starting install script of the openBIS AS distribution"
"$OPENBIS_AS/install.sh" "$OPENBIS_AS" "$OPENBIS_AS/install.sh" "$OPENBIS_AS"
echo "==== Finished install script of the openBIS AS distribution"
YOUNGEST_REPOSITORY=`ls "$REPOSITORY"|sort -r|sed q` YOUNGEST_REPOSITORY=`ls "$REPOSITORY"|sort -r|sed q`
echo "==== Restore config snapshot $YOUNGEST_REPOSITORY"
"$BIN_DIR/restore-config-snapshot.sh" "$SERVERS" "$REPOSITORY/$YOUNGEST_REPOSITORY/" "$BIN_DIR/restore-config-snapshot.sh" "$SERVERS" "$REPOSITORY/$YOUNGEST_REPOSITORY/"
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