wok view busybox/stuff/udhcpd @ rev 5233

busybox: tipo in /etc/init.d/udhcpd
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Apr 08 17:17:44 2010 +0200 (2010-04-08)
parents c88819f36315
children
line source
1 #!/bin/sh
2 # /etc/init.d/udhcpd: Start, stop and restart Udhcp 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=Udhcpd
12 DESC="udhcp deamon"
13 DAEMON=/usr/sbin/udhcpd
14 OPTIONS=$UDHCPD_OPTIONS
15 PIDFILE=/var/run/udhcpd.pid
17 case "$1" in
18 start)
19 if active_pidfile $PIDFILE udhcpd ; then
20 echo "$NAME already running."
21 exit 1
22 fi
23 echo -n "Starting $DESC: $NAME... "
24 $DAEMON $OPTIONS
25 status
26 pidof udhcpd > $PIDFILE
27 ;;
28 stop)
29 if ! active_pidfile $PIDFILE udhcpd ; then
30 echo "$NAME is not running."
31 exit 1
32 fi
33 echo -n "Stopping $DESC: $NAME... "
34 kill `cat $PIDFILE`
35 status
36 ;;
37 restart)
38 if ! active_pidfile $PIDFILE udhcpd ; then
39 echo "$NAME is not running."
40 exit 1
41 fi
42 echo -n "Restarting $DESC: $NAME... "
43 kill `cat $PIDFILE`
44 sleep 2
45 $DAEMON $OPTIONS
46 status
47 pidof udhcpd > $PIDFILE
48 ;;
49 *)
50 echo ""
51 echo -e "\033[1mUsage:\033[0m /etc/init.d/`basename $0` [start|stop|restart]"
52 echo ""
53 exit 1
54 ;;
55 esac
57 exit 0