wok-6.x view cups/stuff/etc/init.d/cupsd @ rev 13481

busybox: use slitaz-base httphelper.sh
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Oct 11 13:43:57 2012 +0200 (2012-10-11)
parents c840214a83b8
children d66c8cb687e8
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 sleep 2
22 rm -f $PIDFILE
23 status
24 ;;
25 start)
26 if [ ! -e $PIDFILE ]; then
27 echo -n "Starting $DESC: $NAME... "
28 $DAEMON $OPTIONS
29 status
30 else
31 echo -n "Not starting $DESC: $DESC is already running"
32 false
33 status
34 fi
35 ;;
36 *)
37 echo ""
38 echo -e "\033[1mUsage:\033[0m /etc/init.d/`basename $0` [start|stop]"
39 echo ""
40 exit 1
41 ;;
42 esac
44 exit 0