I added the following to /etc/cron.hourly/ntpdate as a workaround to get
back automatic time-sync, now once per hour.
#!/bin/sh
NTPDATE=/usr/sbin/ntpdate
NTPDEFAULTS=/etc/default/ntpdate
NTPFALLBACK="ntp.ubuntu.com"
if [ -f "$NTPDEFAULTS" ]; then
. $NTPDEFAULTS
test -n "$NTPSERVERS" || NTPSERVERS=$NTPFALLBACK
else
NTPSERVERS=$NTPFALLBACK
fi
if [ -x "$NTPDATE" ]; then
$NTPDATE -s $NTPOPTIONS $NTPSERVERS
fi
--
No NTP-Sync during bootup
https://launchpad.net/bugs/44166
--
ubuntu-bugs mailing list
[email protected]
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs