mirror of
https://github.com/coolsnowwolf/packages.git
synced 2025-05-02 06:19:14 +08:00
16 lines
381 B
Bash
16 lines
381 B
Bash
#!/bin/sh /etc/rc.common
|
|
# Copyright (C) 2006-2008 OpenWrt.org
|
|
|
|
START=60
|
|
|
|
DEFAULT_SERVERS="0.openwrt.pool.ntp.org 1.openwrt.pool.ntp.org 2.openwrt.pool.ntp.org"
|
|
CFG_SERVERS=$(uci -q get system.ntp.server)
|
|
STEP_SERVERS=${CFG_SERVERS:-$DEFAULT_SERVERS}
|
|
TIMEOUT="2" # in seconds
|
|
|
|
start() {
|
|
for s in $STEP_SERVERS ; do
|
|
/usr/sbin/ntpdate -s -b -u -t "$TIMEOUT" "$s" && break
|
|
done
|
|
}
|