blob: 50c90a53eda3c86f80acfde7651b76ec323227e4 (
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
|
#!/sbin/runscript
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-misc/adjtimex/files/adjtimex.init,v 1.4 2008/09/14 05:03:59 robbat2 Exp $
DAEMON=adjtimex
OPTS="--tick ${TICK} --frequency ${FREQ}"
CONFD="/etc/conf.d/${DAEMON}"
depend() {
before ntp-client ntpd
}
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:
|