From: erickson Date: Wed, 28 Mar 2007 15:28:35 +0000 (+0000) Subject: no longer capture stderr (too chatty) for sip server. log files suffice X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=717b4c3414aeafb694ad5781bf2458e00e1e4dd7;p=Evergreen.git no longer capture stderr (too chatty) for sip server. log files suffice git-svn-id: svn://svn.open-ils.org/ILS/trunk@7116 dcc99617-32d9-48b4-a31d-7c20da2025e4 --- diff --git a/Open-ILS/examples/oils_ctl.sh b/Open-ILS/examples/oils_ctl.sh index 78c09d9683..829a51e5d6 100755 --- a/Open-ILS/examples/oils_ctl.sh +++ b/Open-ILS/examples/oils_ctl.sh @@ -89,7 +89,7 @@ function start_sip { do_action "start" $PID_SIP "OILS SIP Server"; DIR=$(pwd); cd $SIP_DIR; - nohup perl SIPServer.pm "$OPT_SIP_CONFIG" & + perl SIPServer.pm "$OPT_SIP_CONFIG" > /dev/null 2>&1 & pid=$!; cd $DIR; ps ax | grep "$pid";