24 lines
304 B
Bash
Executable File
24 lines
304 B
Bash
Executable File
#!/bin/sh
|
|
#
|
|
# /etc/rc.d/ntpd: start/stop ntp daemon
|
|
#
|
|
|
|
case $1 in
|
|
start)
|
|
(/usr/bin/ntpd -u ntp:ntp -gqx
|
|
/usr/bin/ntpd -u ntp:ntp) &
|
|
;;
|
|
stop)
|
|
/sbin/hwclock -w
|
|
killall -q /usr/bin/ntpd
|
|
;;
|
|
restart)
|
|
$0 stop && sleep 3 && $0 start
|
|
;;
|
|
*)
|
|
echo "usage: $0 [start|stop|restart]"
|
|
;;
|
|
esac
|
|
|
|
# End of file
|