mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-12-28 21:02:25 +01:00
42 lines
974 B
Plaintext
42 lines
974 B
Plaintext
#!/sbin/openrc-run
|
|
# Copyright 1999-2004 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Header: /var/cvsroot/gentoo-x86/net-misc/openntpd/files/openntpd.rc,v 1.7 2008/10/10 09:40:10 bangert Exp $
|
|
|
|
depend() {
|
|
need net
|
|
provide ntp-client
|
|
use dns logger
|
|
}
|
|
|
|
checkconfig() {
|
|
if [ ! -f /etc/ntpd.conf ] ; then
|
|
eerror "Could not find /etc/ntpd.conf!"
|
|
return 1
|
|
fi
|
|
|
|
if [ -x /usr/bin/getent ] ; then
|
|
if [ "`getent passwd ntp | cut -d: -f 6`" != "${NTPD_HOME}" ] ; then
|
|
eerror "Home directory of ntp needs to be ${NTPD_HOME}"
|
|
eerror "Please run 'usermod -d ${NTPD_HOME} ntp'"
|
|
return 1
|
|
fi
|
|
fi
|
|
|
|
return 0
|
|
}
|
|
|
|
start() {
|
|
checkconfig || return $?
|
|
|
|
ebegin "Starting ntpd"
|
|
start-stop-daemon --start --exec /usr/sbin/ntpd --name ntpd -- ${NTPD_OPTS}
|
|
eend $? "Failed to start ntpd"
|
|
}
|
|
|
|
stop() {
|
|
ebegin "Stopping ntpd"
|
|
start-stop-daemon --stop --exec /usr/sbin/ntpd --name ntpd --user root
|
|
eend $? "Failed to stop openntpd"
|
|
}
|