You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
381 B

  1. #!/bin/sh /etc/rc.common
  2. # Copyright (C) 2006-2008 OpenWrt.org
  3. START=60
  4. DEFAULT_SERVERS="0.openwrt.pool.ntp.org 1.openwrt.pool.ntp.org 2.openwrt.pool.ntp.org"
  5. CFG_SERVERS=$(uci -q get system.ntp.server)
  6. STEP_SERVERS=${CFG_SERVERS:-$DEFAULT_SERVERS}
  7. TIMEOUT="2" # in seconds
  8. start() {
  9. for s in $STEP_SERVERS ; do
  10. /usr/sbin/ntpdate -s -b -u -t "$TIMEOUT" "$s" && break
  11. done
  12. }