blob: 77292ba8979b6ec96fa9545eaf5fea2713a63f1f (
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
|
#!/sbin/runscript
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-misc/ntp/files/ntpd.rc,v 1.12 2003/02/14 23:06:19 vapier Exp $
depend() {
need net
use dns logger
}
checkconfig() {
if [ ! -f /etc/ntp.conf ] ; then
eerror "Please create /etc/ntp.conf"
eerror "Sample conf: /usr/share/ntp/ntp.conf"
return 1
fi
return 0
}
start() {
checkconfig || return $?
if [ -n "${NTPDATE_CMD}" ] ; then
ebegin "Initializing clock via ${NTPDATE_CMD}"
${NTPDATE_CMD} ${NTPDATE_OPTS} > /dev/null
eend $? "Failed to run ${NTPDATE_CMD}"
elif [ "${NTPDATE_WARN}" == "y" ] ; then
ewarn "Please setup ntpd via /etc/conf.d/ntpd"
fi
ebegin "Starting ntpd"
start-stop-daemon --start --quiet --pidfile /var/run/ntpd.pid \
--startas /usr/bin/ntpd -- -p /var/run/ntpd.pid ${NTPD_OPTS}
eend $? "Failed to start ntpd"
}
stop() {
ebegin "Stopping ntpd"
start-stop-daemon --stop --quiet --pidfile /var/run/ntpd.pid
eend $? "Failed to stop ntpd"
# clean stale pidfile
[ -f /var/run/ntpd.pid ] && rm -f /var/run/ntpd.pid
}
|