wok-stable view cups/stuff/etc/init.d/cupsd @ rev 2206

cups: up to 13.9, fix web interface and dependencies
author Christophe Lincoln <pankso@slitaz.org>
date Tue Feb 10 16:37:43 2009 +0100 (2009-02-10)
parents 2f416a878f2e
children 9d04e92aeeb7
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|restart)
25 killall -q cupsd
26 rm -f $PIDFILE
27 echo -n "Starting $DESC: $NAME... "
28 $DAEMON $OPTIONS
29 status
30 ;;
31 *)
32 echo ""
33 echo -e "\033[1mUsage:\033[0m /etc/init.d/`basename $0` [start|stop]"
34 echo ""
35 exit 1
36 ;;
37 esac
39 exit 0