diff options
author | Chris Larson <clarson@kergoth.com> | 2004-12-09 09:47:41 +0000 |
---|---|---|
committer | Chris Larson <clarson@kergoth.com> | 2004-12-09 09:47:41 +0000 |
commit | 2c5b8ec6d95cf68650265941530e5ce38c8dd6d9 (patch) | |
tree | bf879bea7ef8517ba8c3d1286ef300401d3d484c /ntp/files | |
parent | 101e2f1623def0a355d20aacb8bd93810703e834 (diff) |
Merge oe-devel@oe-devel.bkbits.net:openembedded
into hyperion.kergoth.com:/home/kergoth/code/openembedded
2004/12/09 03:39:39-06:00 kergoth.com!kergoth
Break people's builds again.. this time moving the packages into a packages/ subdir to clean things up a bit.
BKrev: 41b81f3dvlp3rU7_8MUXLcI8LDdDoA
Diffstat (limited to 'ntp/files')
-rw-r--r-- | ntp/files/configure.patch | 0 | ||||
-rw-r--r-- | ntp/files/ntpdate | 34 |
2 files changed, 0 insertions, 34 deletions
diff --git a/ntp/files/configure.patch b/ntp/files/configure.patch deleted file mode 100644 index e69de29bb2..0000000000 --- a/ntp/files/configure.patch +++ /dev/null diff --git a/ntp/files/ntpdate b/ntp/files/ntpdate deleted file mode 100644 index ef18611965..0000000000 --- a/ntp/files/ntpdate +++ /dev/null @@ -1,34 +0,0 @@ -#!/bin/sh - -PATH=/sbin:/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 |