summaryrefslogtreecommitdiffstats
path: root/generic/etc/init.d/ntp-client
blob: edca3f297f0a0ffb1ee581ab6811140dbc648cf4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
#!/bin/sh
#
# This is a ntp-client init.d script which ist called by init(1) with
# [start|stop] as argument

PATH=/sbin:/bin:/usr/bin
BINARY=/usr/sbin/ntpdc
PIDFILE="/var/run/ntpdc.pid"
CONFIG="/etc/ntp-client.conf"

HARD=false

# --- nothing to change after this line ---

test -f $BINARY || { echo "$BINARY not found" >&2 ; exit 0; }

start_proc() {
	echo -n "Starting NTP client: ntpdc ..."
	test -f "$PIDFILE" && { echo "pid-file exists" >&2 ; exit 0; }
	$BINARY -p $PIDFILE -c $CONFIG
	echo "DONE"
}

stop_proc() {
	echo -n "Stopping NTP client: ntpdc ..."
	test -f "$PIDFILE"
	case $? in
		0)
			kill `cat $PIDFILE` && rm -f $PIDFILE
			;;
		*)
			if [ "$HARD" = "true" ] ; then killall ntpd; fi
			;;
	esac
	echo "DONE"
}


case "$1" in
        start)
        	start_proc
		;;
	stop)
		stop_proc
		;;
        restart|force-reload)
                echo -n "Restarting NTP client: ntpdc... "
                stop_proc
		sleep 2
                start_proc
		echo "done."
                ;;
        reload)
                echo "Not supported" >&2
                exit 1
                ;;
        *)
                echo "Usage: $0 {start|stop|restart|force-reload}"
                exit 1
                ;;
esac

exit 0