Delete init.asterisk, since it's now in contrib/rc.d

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@1965 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
Mark Spencer 2004-01-12 03:13:26 +00:00
parent 5d6c0a66b4
commit 50fe0ee0b3

View file

@ -1,49 +0,0 @@
#!/bin/sh
#
# asterisk This shell script takes care of starting and stopping Asterisk.
#
#
# chkconfig: 2345 60 60
# description: Asterisk is the Linux based PBX
# processname: asterisk
# Source function library.
. /etc/rc.d/init.d/functions
[ -f /usr/sbin/asterisk ] || exit 0
RETVAL=0
# See how we were called.
case "$1" in
start)
# Start daemons.
echo -n "Starting asterisk: "
daemon safe_asterisk
RETVAL=$?
echo
[ $RETVAL -eq 0 ] && touch /var/lock/subsys/asterisk
;;
stop)
# Stop daemons.
echo -n "Shutting down asterisk: "
killproc asterisk
RETVAL=$?
echo
[ $RETVAL -eq 0 ] && rm -f /var/lock/subsys/asterisk
;;
status)
status asterisk
RETVAL=$?
;;
restart|reload)
$0 stop
$0 start
RETVAL=$?
;;
*)
echo "Usage: asterisk {start|stop|restart|reload|status}"
exit 1
esac
exit $RETVAL