wok view cups/stuff/etc/init.d/cupsd @ rev 4933

add/improve TAGS c* receipts
author Rohit Joshi <jozee@slitaz.org>
date Tue Feb 16 12:15:27 2010 +0000 (2010-02-16)
parents 2d810185f0ce
children c840214a83b8
line source
1 #!/bin/sh
2 # /etc/init.d/cups: Start, stop and restart Cups deamon on SliTaz, at boot
3 # time or with the command line.
4 #
5 # To start daemon at boot time, just put the right name in the $RUN_DAEMONS
6 # variable of /etc/rcS.conf and configure options with /etc/daemons.conf.
7 #
8 . /etc/init.d/rc.functions
9 . /etc/daemons.conf
11 NAME=Cupsd
12 DESC="cups deamon"
13 DAEMON=/usr/sbin/cupsd
14 OPTIONS=$CUPSD_OPTIONS
15 PIDFILE=/var/run/cups/cups.sock
17 case "$1" in
18 stop)
19 echo -n "Stopping $DESC: $NAME... "
20 killall -q cupsd
21 rm -f $PIDFILE
22 status
23 ;;
24 start)
25 echo -n "Starting $DESC: $NAME... "
26 $DAEMON $OPTIONS
27 status
28 ;;
29 *)
30 echo ""
31 echo -e "\033[1mUsage:\033[0m /etc/init.d/`basename $0` [start|stop]"
32 echo ""
33 exit 1
34 ;;
35 esac
37 exit 0