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

reduce log output by using -q option for unzip and database upload

SVN: 21026
parent 25c9a616
No related branches found
No related tags found
No related merge requests found
...@@ -368,7 +368,7 @@ function prepare { ...@@ -368,7 +368,7 @@ function prepare {
function unpack { # from ZIPS to BUILD function unpack { # from ZIPS to BUILD
local file_pattern=$1 local file_pattern=$1
unzip -d $WORK $INSTALL/$file_pattern*.zip unzip -q -d $WORK $INSTALL/$file_pattern*.zip
} }
function remove_unpacked { function remove_unpacked {
...@@ -402,7 +402,7 @@ function restore_database { ...@@ -402,7 +402,7 @@ function restore_database {
psql_cmd=`run_psql` psql_cmd=`run_psql`
$psql_cmd -U postgres -c "drop database if exists $db_name" $psql_cmd -U postgres -c "drop database if exists $db_name"
$psql_cmd -U postgres -c "create database $db_name with owner $USER template = template0 encoding = 'UNICODE'" $psql_cmd -U postgres -c "create database $db_name with owner $USER template = template0 encoding = 'UNICODE'"
$psql_cmd -U $USER -d $db_name -f $db_file_path $psql_cmd -q -U $USER -d $db_name -f $db_file_path
} }
# #
...@@ -420,7 +420,7 @@ function install_openbis_server { ...@@ -420,7 +420,7 @@ function install_openbis_server {
rm -fr $openbis_server_dir rm -fr $openbis_server_dir
copy_templates $openbis_server_name copy_templates $openbis_server_name
unzip -d $openbis_server_dir $INSTALL/openBIS*.zip unzip -q -d $openbis_server_dir $INSTALL/openBIS*.zip
$openbis_server_dir/openBIS-server/install.sh $PWD/$openbis_server_dir $openbis_server_dir/service.properties $openbis_server_dir/openbis.conf $openbis_server_dir/openBIS-server/install.sh $PWD/$openbis_server_dir $openbis_server_dir/service.properties $openbis_server_dir/openbis.conf
startup_openbis_server $openbis_server_dir startup_openbis_server $openbis_server_dir
wait_for_server wait_for_server
......
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