X-Git-Url: http://git.ipfire.org/?p=people%2Fpmueller%2Fipfire-2.x.git;a=blobdiff_plain;f=src%2Finitscripts%2Finit.d%2Fntp;fp=src%2Finitscripts%2Finit.d%2Fntp;h=0000000000000000000000000000000000000000;hp=0793927908f762bac2ace9a652793d7831b86c7e;hb=8bc8c282c9b7ef2280e7102e2824047975a9bb4c;hpb=e01b933cc28814d8650f829712639b4eb0d991e6 diff --git a/src/initscripts/init.d/ntp b/src/initscripts/init.d/ntp deleted file mode 100644 index 0793927908..0000000000 --- a/src/initscripts/init.d/ntp +++ /dev/null @@ -1,70 +0,0 @@ -#!/bin/sh -# Begin $rc_base/init.d/ntp - -. /etc/sysconfig/rc -. $rc_functions - -eval $(/usr/local/bin/readhash /var/ipfire/time/settings) - -case "$1" in - start) - if [ "$ENABLESETONBOOT" == "on" ]; then - boot_mesg -n "Setting time on boot..." - pidof wpa_supplicant dhcpcd 2>&1 > /dev/null - if [ "${?}" == "0" ]; then - if [ ! -e /var/ipfire/red/active ]; then - boot_mesg "" - boot_mesg -n "Waiting for red connection" - for (( i=30; i>1; i-- )) do - if [ -e /var/ipfire/red/active ]; then - break; - fi - boot_mesg -n "." - sleep 2 - done - sleep 5 - fi - fi - if [ -e /var/ipfire/red/active ]; then - boot_mesg "" - - host ping.ipfire.org > /dev/null 2>&1 - if [ "${?}" != "0" ]; then - boot_mesg "DNS not work ... init with ntp.ipfire.org at 81.3.27.46 ..." - loadproc /usr/local/bin/settime 81.3.27.46 - boot_mesg "Setting time on boot..." - fi - - loadproc /usr/local/bin/settime $(cat /var/ipfire/time/settime.conf) - else - boot_mesg " ERROR! Not online!" - echo_warning - fi - fi - - boot_mesg "Starting ntpd..." - loadproc /usr/bin/ntpd -Ap /var/run/ntpd.pid - ;; - - stop) - boot_mesg "Stopping ntpd..." - killproc /usr/bin/ntpd - ;; - - restart) - $0 stop - sleep 1 - $0 start - ;; - - status) - statusproc /usr/bin/ntpd - ;; - - *) - echo "Usage: $0 {start|stop|restart|status}" - exit 1 - ;; -esac - -# End $rc_base/init.d/ntp