mirror of
https://github.com/vincentmli/bpfire.git
synced 2026-04-19 07:23:03 +02:00
- Device time more accurate. (e.g., +/- 10 seconds per day to < 100 ms on some devices)
( I know we don't need the perfect time server )
- NTP and time will be accurate in manual mode (setting on Time Server > NTP Configuration WebGUI)
- Change NTP "prefer" server:
- The current preferred NTP server in an Undisciplined Local Clock.
- This is intended when no outside source of synchronized time is available.
- Change the "prefer" server from 127.127.1.0 to the Primary NTP server specified on
the Time Server > NTP Configuration WebGUI page.
- Change allows the drift file (located at /etc/ntp/drift) to be populated by ntpd.
- The drift file is updated about once per hour which helps correct the device time.
Signed-off-by: Jon Murphy <jon.murphy@ipfire.org>
81 lines
2.6 KiB
Bash
81 lines
2.6 KiB
Bash
#!/bin/sh
|
|
###############################################################################
|
|
# #
|
|
# IPFire.org - A linux based firewall #
|
|
# Copyright (C) 2007-2022 IPFire Team <info@ipfire.org> #
|
|
# #
|
|
# This program is free software: you can redistribute it and/or modify #
|
|
# it under the terms of the GNU General Public License as published by #
|
|
# the Free Software Foundation, either version 3 of the License, or #
|
|
# (at your option) any later version. #
|
|
# #
|
|
# This program is distributed in the hope that it will be useful, #
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of #
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
|
|
# GNU General Public License for more details. #
|
|
# #
|
|
# You should have received a copy of the GNU General Public License #
|
|
# along with this program. If not, see <http://www.gnu.org/licenses/>. #
|
|
# #
|
|
###############################################################################
|
|
|
|
. /etc/sysconfig/rc
|
|
. $rc_functions
|
|
|
|
eval $(/usr/local/bin/readhash /var/ipfire/time/settings)
|
|
|
|
case "$1" in
|
|
start)
|
|
if [ "$ENABLESETONBOOT" == "on" ]; then
|
|
boot_mesg -n "Setting time on boot..."
|
|
pidof wpa_supplicant dhcpcd 2>&1 > /dev/null
|
|
if [ "${?}" == "0" ]; then
|
|
if [ ! -e /var/ipfire/red/active ]; then
|
|
boot_mesg ""
|
|
boot_mesg -n "Waiting for red connection"
|
|
for (( i=30; i>1; i-- )) do
|
|
if [ -e /var/ipfire/red/active ]; then
|
|
break;
|
|
fi
|
|
boot_mesg -n "."
|
|
sleep 2
|
|
done
|
|
sleep 5
|
|
fi
|
|
fi
|
|
if [ -e /var/ipfire/red/active ]; then
|
|
boot_mesg ""
|
|
loadproc /usr/local/bin/settime $(cat /var/ipfire/time/settime.conf)
|
|
else
|
|
boot_mesg " ERROR! Not online!"
|
|
echo_warning
|
|
fi
|
|
fi
|
|
|
|
echo -e "server ${NTP_ADDR_1} prefer\nserver ${NTP_ADDR_2}" > /etc/ntp/ntpInclude.conf
|
|
|
|
boot_mesg "Starting ntpd..."
|
|
loadproc /usr/bin/ntpd -Ap /var/run/ntpd.pid
|
|
;;
|
|
|
|
stop)
|
|
boot_mesg "Stopping ntpd..."
|
|
killproc /usr/bin/ntpd
|
|
;;
|
|
|
|
restart)
|
|
$0 stop
|
|
sleep 1
|
|
$0 start
|
|
;;
|
|
|
|
status)
|
|
statusproc /usr/bin/ntpd
|
|
;;
|
|
|
|
*)
|
|
echo "Usage: $0 {start|stop|restart|status}"
|
|
exit 1
|
|
;;
|
|
esac
|