wok view ypserv/stuff/ypserv @ rev 11401

Fix: typo in linux-libre-api-headers (thanks to godane)
author Antoine Bodin <gokhlayeh@slitaz.org>
date Sun Dec 11 02:16:15 2011 +0100 (2011-12-11)
parents
children 7f188676b59c
line source
1 #!/bin/sh
2 # /etc/init.d/ypserv: Start, stop and restart YP (NIS) Server on SliTaz, at
3 # boot time or with the command line.
4 #
5 # To start YP (NIS) Server at boot time, just put ypserver 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=ypserv
12 DESC="YP (NIS) Server"
13 DAEMON=/usr/sbin/ypserv
14 OPTIONS=$YPSERV_OPTIONS
15 PIDFILE=/var/run/ypserv.pid
17 case "$1" in
18 start)
19 if active_pidfile $PIDFILE ypserv ; then
20 echo "$NAME already running."
21 exit 1
22 fi
23 echo -n "Starting $DESC: $NAME... "
24 $DAEMON $OPTIONS
25 echo "$(pidof ypserv)" > $PIDFILE
26 status
27 ;;
28 stop)
29 if ! active_pidfile $PIDFILE ypserv ; 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 ypserv ; 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 ;;
48 *)
49 echo ""
50 echo -e "\033[1mUsage:\033[0m /etc/init.d/`basename $0` [start|stop|restart]"
51 echo ""
52 exit 1
53 ;;
54 esac
56 exit 0