summaryrefslogtreecommitdiff
path: root/chronyd.initd
diff options
context:
space:
mode:
authorjc_gargma <jc_gargma@iserlohn-fortress.net>2018-10-31 02:09:22 -0700
committerjc_gargma <jc_gargma@iserlohn-fortress.net>2018-10-31 02:09:22 -0700
commit046f50435b7b3f5fe3daddbb6569f6873813e6fd (patch)
treeb3b2e57cb6626d52ad1af743e4487a6e2306c348 /chronyd.initd
parentRemoved broken sed command | Swapped /sbin with /usr/bin (diff)
downloadchrony-openrc-046f50435b7b3f5fe3daddbb6569f6873813e6fd.tar.xz
Fixed chronyd so that stopping works
Diffstat (limited to 'chronyd.initd')
-rw-r--r--chronyd.initd67
1 files changed, 7 insertions, 60 deletions
diff --git a/chronyd.initd b/chronyd.initd
index 8fb654e..0b50a5a 100644
--- a/chronyd.initd
+++ b/chronyd.initd
@@ -2,69 +2,16 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
+command="/usr/bin/chronyd"
+command_args="${CHRONY_ARGS}"
+pidfile="/run/${RC_SVCNAME}.pid"
+start_stop_daemon_args="--background --make-pidfile"
+
depend() {
need net
use logger 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
- PIDFILE=`awk '/^ *pidfile/{print $2}' "${CFGFILE}"`
- 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
-
- [ -n "${PIDFILE}" ] || PIDFILE=/run/chronyd.pid
-
- ebegin "Starting chronyd"
- start-stop-daemon \
- --start \
- --quiet \
- --exec /usr/bin/chronyd \
- --pidfile "${PIDFILE}" \
- -- -f "${CFGFILE}" ${ARGS}
- eend $? "Failed to start chronyd"
-}
-
-stop() {
- checkconfig || return $?
-
- [ -n "${PIDFILE}" ] || PIDFILE=/run/chronyd.pid
-
- ebegin "Stopping chronyd"
- start-stop-daemon \
- --stop \
- --quiet \
- --pidfile "${PIDFILE}"
- eend $? "Failed to stop chronyd"
+stop_pre() {
+ pkill -u chrony
}