aboutsummaryrefslogtreecommitdiff
path: root/net/ntpd/files
diff options
context:
space:
mode:
authorKarl Palsson <karlp@etactica.com>2018-12-18 14:49:13 +0000
committerKarl Palsson <karlp@etactica.com>2019-07-02 09:25:34 +0000
commitc00c826789318cdfed0aeab211be884bef649f17 (patch)
treea366fe0f640505fe2a70df0af155910804e2dcba /net/ntpd/files
parentc414edf63fbb1012d7d92757eacd6d3f40c54289 (diff)
ntpdate: use uci configured servers instead of static list
If we're going to have a list of ntp servers, we should at least respect them. Fallback to the original static list if no configured servers are found. Signed-off-by: Karl Palsson <karlp@etactica.com>
Diffstat (limited to 'net/ntpd/files')
-rw-r--r--net/ntpd/files/ntpdate.init4
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() {