Skip to content
Snippets Groups Projects
Commit 324012a2 authored by kaloyane's avatar kaloyane
Browse files

minor: fix boot.sh so that it fetches the contents of the entire "admin"...

minor: fix boot.sh so that it fetches the contents of the entire "admin" folder including "post-install"

SVN: 22157
parent c7868853
No related branches found
No related tags found
No related merge requests found
......@@ -45,11 +45,6 @@ cd bin
wget $SVN_DIR/svn-update.sh
wget $SVN_DIR/env
# fetch screening specific file
if [ "$SVN_DIR" == "$SVN_DIR_SCREENING" ]; then
wget $SVN_DIR/empty-screening-database.sql
fi
source ./svn-update.sh
......
......@@ -18,8 +18,8 @@ fi
WGET_HOME=`which wget`
# download the scripts
$WGET_HOME --no-directories --directory-prefix $OPENBIS_HOME/bin --no-verbose -r -l1 -A.sh http://$SVN/
$WGET_HOME -nH --cut-dirs=6 --directory-prefix $OPENBIS_HOME --no-verbose -r -l2 -A.{sh,sql}http://$SVN/
# set permissions
find $OPENBIS_HOME/bin -type f -name "*.sh" -exec chmod 700 {} \;
find $OPENBIS_HOME -type f -name "*.sh" -exec chmod 700 {} \;
......@@ -7,6 +7,5 @@ mkdir bin
cd bin
wget $SVN_DIR/svn-update.sh
wget $SVN_DIR/env
wget $SVN_DIR/empty-screening-database.sql
. ./svn-update.sh
cd ..
\ No newline at end of file
......@@ -18,7 +18,7 @@ fi
WGET_HOME=`which wget`
# download the scripts
$WGET_HOME --no-directories --directory-prefix $OPENBIS_HOME --no-verbose -r -l1 -A.sh http://$SVN/
$WGET_HOME -nH --cut-dirs=6 --directory-prefix $OPENBIS_HOME --no-verbose -r -l2 -A.{sh,sql}http://$SVN/
# set permissions
find $OPENBIS_HOME -type f -name "*.sh" -exec chmod 700 {} \;
......
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