Skip to content
Snippets Groups Projects
Commit dd180042 authored by yvesn's avatar yvesn
Browse files

deleted boot.sh and svn-update.sh files since they only make sense in

the context of a build from svn and should therefore not be required
anymore
parent 9d64d37b
No related branches found
No related tags found
No related merge requests found
#!/bin/bash
# Fetches "openBIS for HCS" administration scripts from source repository to the bin folder in current directory.
# setup scripts for the generic openBIS version
SVN_DIR_GENERIC=svnsis.ethz.ch/repos/cisd/openbis/trunk/dist/admin
#setup scripts for screening version
SVN_DIR_SCREENING=svnsis.ethz.ch/repos/cisd/screening/trunk/dist/admin
BASE=`dirname "$0"`
if [ ${BASE#/} == ${BASE} ]; then
BASE="`pwd`/${BASE}"
fi
SERVERS_DIR=$BASE/servers
if [ ! -d "$SERVERS_DIR" ]; then
echo "$SERVERS_DIR does not exist. Aborting ..."
exit 1
fi
SCREENING_ZIPS_EXIST=`find "$SERVERS_DIR" -name "*server-screening*.zip"`
GENERIC_ZIPS_EXIST=`find "$SERVERS_DIR" -name "*server-*.zip"`
if [ -n "$SCREENING_ZIPS_EXIST" ]; then
echo "Downloading admin scripts for openBIS screening..."
SVN_DIR=$SVN_DIR_SCREENING
elif [ -n "$GENERIC_ZIPS_EXIST" ]; then
echo "Downloading admin scripts for generic openBIS installation..."
SVN_DIR=$SVN_DIR_GENERIC
else
echo "Could not detect openBIS archives in $SERVERS_DIR. Please, download openBIS and datastore server archives and try again..."
exit 2
fi
mkdir bin
cd bin
wget $SVN_DIR/svn-update.sh
wget $SVN_DIR/env
source ./svn-update.sh
cd ..
\ No newline at end of file
#!/bin/bash
# Updates all the admin scripts to the version found in SVN.
# screening-specific
SVN=svnsis.ethz.ch/repos/cisd/openbis/trunk/dist/admin
# set directory
BASE=`dirname "$0"`
if [ ${BASE#/} == ${BASE} ]; then
BASE="`pwd`/${BASE}"
fi
if [ -z $OPENBIS_HOME ]; then
OPENBIS_HOME=${BASE}
fi
# checking for wget
WGET_HOME=`which wget`
# download the scripts
$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 {} \;
#!/bin/bash
# Fetches "openBIS for HCS" administration scripts from source repository to the bin folder in current directory.
SVN_DIR=svnsis.ethz.ch/repos/cisd/screening/trunk/dist/admin
mkdir bin
cd bin
wget $SVN_DIR/svn-update.sh
wget $SVN_DIR/env
. ./svn-update.sh
cd ..
\ No newline at end of file
#!/bin/bash
# Updates all the admin scripts to the version found in SVN.
# screening-specific
SVN=svnsis.ethz.ch/repos/cisd/screening/trunk/dist/admin
SVN2=svnsis.ethz.ch/repos/cisd/installation/trunk/resource/installer/bin/backup-databases.sh
# set directory
BASE=`dirname "$0"`
if [ ${BASE#/} == ${BASE} ]; then
BASE="`pwd`/${BASE}"
fi
if [ -z $OPENBIS_HOME ]; then
OPENBIS_HOME=${BASE}
fi
# checking for wget
WGET_HOME=`which wget`
# download the scripts
$WGET_HOME -nH --cut-dirs=6 --directory-prefix $OPENBIS_HOME --no-verbose -r -l2 -A.{sh,sql} http://$SVN/
$WGET_HOME -nH --directory-prefix $OPENBIS_HOME --no-verbose http://$SVN2
# 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