opt/cups/cups

24 lines
247 B
Plaintext
Raw Normal View History

2006-02-23 16:26:10 +01:00
#!/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
2006-05-14 14:07:48 +02:00
# End of file