summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xremote/rootfs/rootfs-stage32/data/opt/openslx/scripts/systemd-setup_network_time6
1 files changed, 3 insertions, 3 deletions
diff --git a/remote/rootfs/rootfs-stage32/data/opt/openslx/scripts/systemd-setup_network_time b/remote/rootfs/rootfs-stage32/data/opt/openslx/scripts/systemd-setup_network_time
index 3e644abd..87c93fd4 100755
--- a/remote/rootfs/rootfs-stage32/data/opt/openslx/scripts/systemd-setup_network_time
+++ b/remote/rootfs/rootfs-stage32/data/opt/openslx/scripts/systemd-setup_network_time
@@ -3,13 +3,13 @@
. /opt/openslx/config || { echo "Could not source config!"; exit 1; }
SLX_NTP_SERVER="$SLX_NTP_SERVER 0.de.pool.ntp.org"
for SERVER in $SLX_NTP_SERVER; do
- if ntpdate -u -b "$SERVER"; then
+ if ntpdate -u -p 2 "$SERVER"; then
echo "Successfully queried $SERVER for time."
if [ "x$SLX_BIOS_CLOCK" = "xlocal" ]; then
- sleep 1
+ usleep 100000
hwclock -l -w || echo "... but could not set BIOS clock to localtime"
elif [ "x$SLX_BIOS_CLOCK" = "xutc" ]; then
- sleep 1
+ usleep 100000
hwclock -u -w || echo "... but could not set BIOS clock to UTC"
fi
exit 0