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.

13 lines
288 B

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