aboutsummaryrefslogtreecommitdiffstats
path: root/main/chrony/chronyd.initd
blob: e6ad293dd603353b37faa899c3139d368a29fc0a (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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
#!/sbin/openrc-run
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-misc/chrony/files/chronyd.rc,v 1.8 2007/03/22 14:32:09 tove Exp $

command="/usr/sbin/chronyd"
description="NTP daemon"
pidfile="/var/run/chrony/chronyd.pid"

depend() {
	need net
	after firewall
	provide ntp-client ntp-server
	use dns
}

checkconfig() {
	# Note that /etc/chrony/chrony.keys is *NOT* checked. This
	# is because the user may have specified another key
	# file, and we don't want to force the user to use that
	# exact name for the key file.
	if [ ! -f "${CFGFILE}" ] ; then
		eerror "Please create ${CFGFILE} and the"
		eerror "chrony key file (usually /etc/chrony/chrony.keys)"
		eerror "by using the"
		eerror ""
		eerror "        chrony.conf.example"
		eerror "        chrony.keys.example"
		eerror ""
		eerror "files (from the documentation directory)"
		eerror "as templates."
		return 1
	else
		# Actually, I tried it, and chrony seems to ignore the pidfile
		# option. I'm going to leave it here anyway, since you never
		# know if it might be handy
		_cfg_pidfile=`awk '/^ *pidfile/{print $2}' "${CFGFILE}"`
		if [ -n "$_cfg_pidfile" ] ; then
			pidfile="$_cfg_pidfile"
		fi
	fi
	return 0
}

setxtrarg() {
	if [ -c /dev/rtc ]; then
		grep -q '^rtcfile' "${CFGFILE}" && ARGS="${ARGS} -s"
	fi
	grep -q '^dumponexit$' "${CFGFILE}" && ARGS="${ARGS} -r"
	return 0
}

start() {
	checkconfig || return $?
	setxtrarg

	# If we are configured to run in a VRF, provide a hint for that
	RC_VRF_EXEC=""
	if [ -n "$vrf" ]; then
		RC_VRF_EXEC="/sbin/ip vrf exec $vrf"
	fi

	local daemon_args=
	if yesno "$FAST_STARTUP"; then
		ARGS="${ARGS} -n"
		daemon_args="--background"
	fi

	ebegin "Starting chronyd"
	eval ${RC_VRF_EXEC} start-stop-daemon $daemon_args --start --quiet \
		--exec "${command}" \
		--pidfile "${pidfile}" \
		-- -f "${CFGFILE}" ${ARGS}
	eend $? "Failed to start chronyd"
}

stop() {
	checkconfig || return $?

	ebegin "Stopping chronyd"
	start-stop-daemon --stop --quiet \
		--pidfile "${pidfile}"
	eend $? "Failed to stop chronyd"
}