opt/openntpd/ntpd
Simon Gloßner 7cb63bc48d [notify] openntpd: new user/group
The default user and group is 'ntp'. Please rename the old user and
group (_ntp).

Adopted the port from Brett.
2008-06-18 02:27:51 +02:00

24 lines
257 B
Bash

#!/bin/sh
#
# /etc/rc.d/ntpd: start/stop ntpd daemon
#
case $1 in
start)
/usr/sbin/ntpd -s
;;
stop)
killall -q /usr/sbin/ntpd
;;
restart)
$0 stop
sleep 2
$0 start
;;
*)
echo "usage: $0 [start|stop|restart]"
;;
esac
# End of file