ntpdate:
authorKoen Kooi <koen@openembedded.org>
Sun, 13 Feb 2005 10:59:32 +0000 (10:59 +0000)
committerKoen Kooi <koen@openembedded.org>
Sun, 13 Feb 2005 10:59:32 +0000 (10:59 +0000)
  fix PATH

BKrev: 420f3314UbqbGmuP8hXXHY7QYmi2Vg

packages/ntp/files/ntpdate

index e69de29..b9963b7 100644 (file)
@@ -0,0 +1,34 @@
+#!/bin/sh
+
+PATH=/sbin:/bin:/usr/bin
+
+test -f /usr/bin/ntpdate || exit 0
+
+if test -f /etc/default/ntpdate ; then
+. /etc/default/ntpdate
+else
+NTPSERVERS="pool.ntp.org"
+fi
+
+test -n "$NTPSERVERS" || exit 0
+
+case "$1" in
+start|force-reload)
+  echo -n "Running ntpdate to synchronize clock"
+  /usr/bin/ntpdate -u -b -s $NTPOPTIONS $NTPSERVERS
+  echo "."
+  ;;
+restart|reload)
+  # Drop -b to slew clock rather than step it if called after system is up
+  echo -n "Running ntpdate to synchronize clock"
+  /usr/bin/ntpdate -u -s $NTPOPTIONS $NTPSERVERS
+  echo "."
+  ;;
+stop)
+  ;;
+*)
+  echo "Usage: /etc/init.d/ntpdate {start|stop|restart|reload|force-reload}"
+  exit 1
+esac
+
+exit 0