remove outdated redhat init script and provide the updated one in 'make rpm' (issue #5786)

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.2@7244 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
Russell Bryant
2005-11-30 21:31:18 +00:00
parent 6f433a7e7b
commit d6e5eb75ee
2 changed files with 1 additions and 46 deletions

View File

@@ -1,45 +0,0 @@
#!/bin/bash
#
# chkconfig: 2345 99 15
# description: Open source PBX
# processname: asterisk
# source function library
. /etc/rc.d/init.d/functions
RETVAL=0
case "$1" in
start)
echo -n "Starting Asterisk PBX: "
/sbin/modprobe ixj
daemon /usr/sbin/asterisk
RETVAL=$?
echo
[ $RETVAL -eq 0 ] && touch /var/lock/subsys/asterisk
;;
stop)
echo -n "Shutting Asterisk PBX: "
killproc asterisk
/sbin/rmmod -r ixj
RETVAL=$?
echo
[ $RETVAL -eq 0 ] && rm -f /var/lock/subsys/asterisk
;;
restart|reload)
$0 stop
$0 start
RETVAL=$?
;;
status)
status asterisk
RETVAL=$?
;;
*)
echo "Usage: asterisk {start|stop|status|restart|reload}"
exit 1
esac
exit $RETVAL