diff options
| author | Gustavo Zacarias <gustavo@zacarias.com.ar> | 2016-01-13 09:29:04 -0300 |
|---|---|---|
| committer | Peter Korsgaard <peter@korsgaard.com> | 2016-01-13 21:43:18 +0100 |
| commit | 80003ab6cfce0faaa473d5b99062c905b8f231ba (patch) | |
| tree | 7e0c4a75f90cc7f3975a569e8a10bd539f7ee2cc /package/openntpd | |
| parent | 82f3124522a579d2fa75f9021a16f8494fc7bf25 (diff) | |
| download | buildroot-80003ab6cfce0faaa473d5b99062c905b8f231ba.tar.gz buildroot-80003ab6cfce0faaa473d5b99062c905b8f231ba.zip | |
openntpd: set time immediately from initscript
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>
Diffstat (limited to 'package/openntpd')
| -rwxr-xr-x | package/openntpd/S49ntp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/openntpd/S49ntp b/package/openntpd/S49ntp index 1a678410e4..c211ac835e 100755 --- a/package/openntpd/S49ntp +++ b/package/openntpd/S49ntp @@ -6,7 +6,7 @@ case "$1" in start) printf "Starting openntpd: " - start-stop-daemon -S -x /usr/sbin/ntpd -- -p /run/ntpd.pid + start-stop-daemon -S -x /usr/sbin/ntpd -- -s -p /run/ntpd.pid [ $? = 0 ] && echo "OK" || echo "FAIL" ;; stop) |

