Version 0.1.12 from FTP

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@462 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
Mark Spencer
2002-06-19 02:35:40 +00:00
parent ede7bca2a7
commit ed6b4c821e
5 changed files with 199 additions and 10 deletions

View File

@@ -0,0 +1,51 @@
#!/bin/sh
#
# asterisk This shell script takes care of starting and stopping
# asterisk (printer daemon).
#
# chkconfig: 2345 60 60
# description: asterisk is the print daemon required for lpr to work properly. \
# It is basically a server that arbitrates print jobs to printer(s).
# processname: asterisk
# config: /etc/printcap
# 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