From a656b3c6a315262c510c7f503b5e7d7608aa2f8c Mon Sep 17 00:00:00 2001 From: markster Date: Sun, 25 Jul 2004 23:12:33 +0000 Subject: Let safe_asterisk take arguments (bug #2085) git-svn-id: http://svn.digium.com/svn/asterisk/trunk@3511 f38db490-d61c-443f-a65b-d21fe96a405b --- contrib/scripts/safe_asterisk | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/contrib/scripts/safe_asterisk b/contrib/scripts/safe_asterisk index ee2cc7717..56a8d36c3 100755 --- a/contrib/scripts/safe_asterisk +++ b/contrib/scripts/safe_asterisk @@ -1,4 +1,5 @@ #!/bin/sh +CLIARGS="$*" # Grab any args passed to safe_asterisk TTY=9 # TTY (if you want one) for Asterisk to run on CONSOLE=yes # Whether or not you want a console #NOTIFY=ben@alkaloid.net # Who to notify about crashes @@ -42,10 +43,10 @@ run_asterisk() if [ "$TTY" != "" ]; then cd /tmp stty sane < /dev/${TTY} - asterisk ${ASTARGS} >& /dev/${TTY} < /dev/${TTY} + asterisk ${CLIARGS} ${ASTARGS} >& /dev/${TTY} < /dev/${TTY} else cd /tmp - asterisk ${ASTARGS} + asterisk ${CLIARGS} ${ASTARGS} fi EXITSTATUS=$? echo "Asterisk ended with exit status $EXITSTATUS" @@ -75,7 +76,7 @@ run_asterisk() fi fi echo "Automatically restarting Asterisk." - sleep 1 + sleep 4 done } -- cgit v1.2.3