mirror of
https://github.com/asterisk/asterisk.git
synced 2025-09-05 20:20:07 +00:00
Don't exit the script if Asterisk is not running.
(closes issue #12611) git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.4@115554 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -22,6 +22,7 @@ NAME=asterisk
|
||||
DESC="Asterisk PBX"
|
||||
# Full path to asterisk binary
|
||||
DAEMON=/usr/sbin/asterisk
|
||||
TRUE=/bin/true
|
||||
|
||||
# Uncomment this ONLY if you know what you are doing.
|
||||
# export LD_ASSUME_KERNEL=2.4.1
|
||||
@@ -53,7 +54,7 @@ case "$1" in
|
||||
start)
|
||||
# Check if Asterisk is already running. If it is, then bug out, because
|
||||
# starting up Asterisk when Asterisk is already running is very bad.
|
||||
VERSION=`${DAEMON} -rx 'core show version'`
|
||||
VERSION=`${DAEMON} -rx 'core show version' || ${TRUE}`
|
||||
if [ "${VERSION:0:8}" = "Asterisk" ]; then # otherwise "Unable t"
|
||||
echo "Asterisk is already running. $0 will exit now."
|
||||
exit 1
|
||||
|
Reference in New Issue
Block a user