mirror of
https://github.com/asterisk/asterisk.git
synced 2025-11-01 11:32:25 +00:00
https://origsvn.digium.com/svn/asterisk/branches/1.4 ........ r115285 | tilghman | 2008-05-04 22:22:25 -0500 (Sun, 04 May 2008) | 7 lines When starting Asterisk, bug out if Asterisk is already running. (closes issue #12525) Reported by: explidous Patches: 20080428__bug12525.diff.txt uploaded by Corydon76 (license 14) Tested by: mvanbaak ........ git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@115286 65c4cc65-6c06-0410-ace0-fbb531ad65f3
27 lines
597 B
Plaintext
Executable File
27 lines
597 B
Plaintext
Executable File
#!/sbin/runscript
|
|
# $Id$
|
|
|
|
depend() {
|
|
need net logger
|
|
}
|
|
|
|
start() {
|
|
# Check if Asterisk is already running. If it is, then bug out, because
|
|
# starting safe_asterisk when Asterisk is running is very bad.
|
|
VERSION=`${ASTSBINDIR}/asterisk -rx 'core show version'`
|
|
if [ "${VERSION:0:8}" = "Asterisk" ]; then # otherwise "Unable t"
|
|
echo "Asterisk is already running. $0 will exit now."
|
|
exit 1
|
|
fi
|
|
|
|
ebegin "Starting Asterisk"
|
|
/usr/sbin/asterisk
|
|
eend $? "Failed to start Asterisk"
|
|
}
|
|
|
|
stop() {
|
|
ebegin "Stopping Asterisk"
|
|
kill $(cat /var/run/asterisk.pid)
|
|
eend $? "Failed to stop Asterisk"
|
|
}
|