Enabled force setting system time on boot.

This fixes bug #0000614 for IPFire 2.7
This commit is contained in:
Christian Schmidt
2010-04-11 22:43:27 +02:00
parent c655052559
commit ed0a0ba8a1
5 changed files with 21 additions and 2 deletions

View File

@@ -4,8 +4,15 @@
. /etc/sysconfig/rc
. $rc_functions
eval $(/usr/local/bin/readhash /var/ipfire/time/settings)
case "$1" in
start)
if [ "$ENABLESETONBOOT" == "on" ]; then
boot_mesg "Setting time on booot..."
loadproc /usr/local/bin/settime $(cat /var/ipfire/time/settime.conf)
fi
boot_mesg "Starting ntpd..."
loadproc /usr/bin/ntpd -Ap /var/run/ntpd.pid
;;