You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/net-misc/adjtimex/files/adjtimex.init

35 lines
638 B

#!/sbin/openrc-run
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
DAEMON=adjtimex
OPTS="--tick ${TICK} --frequency ${FREQ}"
CONFD="/etc/conf.d/${DAEMON}"
depend() {
before ntp-client ntpd
need localmount
}
checkconfig() {
if [ ! -f "${CONFD}" ]; then
eerror "Configuration file not found!"
eerror "You must run adjtimexconfig to create it."
return 1
fi
}
start() {
checkconfig || return 1
ebegin "Regulating system clock with ${DAEMON}..."
/usr/sbin/${DAEMON} ${OPTS}
eend $?
}
stop() {
:
}
# vim: ts=4 sw=4 ft=gentoo-init-d: