80003ab6cf
Match the systemd service file and set time immediately on startup rather than small steps when it differs a lot. On embedded scenarios this is better since boards that lack a battery-backed RTC might start at unix epoch and the time set will delay for quite a while otherwise. For boards that do have a battery-backed RTC the behaviour will be practically the same unless the RTC drifts a lot. Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
26 lines
469 B
Bash
Executable File
26 lines
469 B
Bash
Executable File
#!/bin/sh
|
|
|
|
[ -x /usr/sbin/ntpd ] || exit 0
|
|
[ -f /etc/ntpd.conf ] || exit 0
|
|
|
|
case "$1" in
|
|
start)
|
|
printf "Starting openntpd: "
|
|
start-stop-daemon -S -x /usr/sbin/ntpd -- -s -p /run/ntpd.pid
|
|
[ $? = 0 ] && echo "OK" || echo "FAIL"
|
|
;;
|
|
stop)
|
|
printf "Stopping openntpd: "
|
|
start-stop-daemon -K -q -p /run/ntpd.pid
|
|
[ $? = 0 ] && echo "OK" || echo "FAIL"
|
|
;;
|
|
restart)
|
|
"$0" stop
|
|
sleep 1
|
|
"$0" start
|
|
;;
|
|
*)
|
|
echo "Usage: $0 {start|stop|restart}"
|
|
;;
|
|
esac
|