diff options
Diffstat (limited to 'net/ntpd/files')
-rw-r--r-- | net/ntpd/files/ntpdate.init | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/net/ntpd/files/ntpdate.init b/net/ntpd/files/ntpdate.init index 2f332104d..30460e5ae 100644 --- a/net/ntpd/files/ntpdate.init +++ b/net/ntpd/files/ntpdate.init @@ -3,7 +3,9 @@ START=60 -STEP_SERVERS="0.openwrt.pool.ntp.org 1.openwrt.pool.ntp.org 2.openwrt.pool.ntp.org" +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() { |