From: erickson Date: Tue, 11 Nov 2008 20:49:52 +0000 (+0000) Subject: in trunk, go ahead and run the perl control script with verbose flag on X-Git-Tag: osrf_rel_2_0_1~524 X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=7e828353a556e9baf2a2c3e4dbdff12e176871c7;p=OpenSRF.git in trunk, go ahead and run the perl control script with verbose flag on git-svn-id: svn://svn.open-ils.org/OpenSRF/trunk@1493 9efc2488-bf62-4759-914b-345cdb29e865 --- diff --git a/bin/osrf_ctl.sh b/bin/osrf_ctl.sh index f696dc9..4c0a3cf 100755 --- a/bin/osrf_ctl.sh +++ b/bin/osrf_ctl.sh @@ -160,14 +160,14 @@ function stop_router { function start_perl { echo "Starting OpenSRF Perl"; - opensrf-perl.pl --pid-dir $OPT_PID_DIR \ + opensrf-perl.pl --verbose --pid-dir $OPT_PID_DIR \ --config $OPT_CONFIG --action start_all --settings-startup-pause 3 return 0; } function stop_perl { echo "Stopping OpenSRF Perl"; - opensrf-perl.pl --pid-dir $OPT_PID_DIR --config $OPT_CONFIG --action stop_all + opensrf-perl.pl --verbose --pid-dir $OPT_PID_DIR --config $OPT_CONFIG --action stop_all sleep 1; return 0; }