From: erickson Date: Tue, 8 Feb 2005 15:04:32 +0000 (+0000) Subject: changed ILS to SRF X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=f8e454a770ac22caa0b0c0469191945e2742681a;p=opensrf%2Fbjwebb.git changed ILS to SRF git-svn-id: svn://svn.open-ils.org/OpenSRF/trunk@27 9efc2488-bf62-4759-914b-345cdb29e865 --- diff --git a/bin/opensrf_ctl b/bin/opensrf_ctl index c8469e0..ffc3499 100755 --- a/bin/opensrf_ctl +++ b/bin/opensrf_ctl @@ -8,7 +8,7 @@ case $1 in "start") - perl -MOpenILS::System -e 'OpenILS::System->bootstrap()' & + perl -MOpenSRF::System -e 'OpenSRF::System->bootstrap()' & sleep 2; $0 status; echo; @@ -16,7 +16,7 @@ case $1 in "stop") PID=$(ps ax | grep "[0-9] System$" | awk '{print $1}'); if [ -z $PID ]; then - echo "OpenILS System is not running"; + echo "OpenSRF System is not running"; exit; fi echo "Killing System...$PID"; @@ -26,10 +26,10 @@ case $1 in "status") PID=$(ps ax | grep "[0-9] System$" | awk '{print $1}'); if [ -z $PID ]; then - echo "OpenILS System is not running"; + echo "OpenSRF System is not running"; exit 0; fi - echo "OpenILS System is running"; + echo "OpenSRF System is running"; exit 1; ;; "restart")