opt/cups/cups
2006-02-23 15:26:10 +00:00

23 lines
246 B
Bash

#!/bin/sh
#
# /etc/rc.d/cups: start/stop/reload CUPS daemon
#
case $1 in
start)
/usr/sbin/cupsd
;;
stop)
killall -q /usr/sbin/cupsd
;;
restart)
$0 stop
sleep 2
$0 start
;;
*)
echo "Usage: $0 [start|stop|restart]"
;;
esac
# End of file