summaryrefslogtreecommitdiffstats
path: root/abs/core/ntp/ntpd
diff options
context:
space:
mode:
authorBritney Fransen <brfransen@gmail.com>2018-03-06 19:46:00 (GMT)
committerBritney Fransen <brfransen@gmail.com>2018-03-06 19:46:00 (GMT)
commitf3b88a74a85c8a877dbdcb61ed10fcca9b012c47 (patch)
tree86d16099a487a4fc897ff51c2d2403792811c701 /abs/core/ntp/ntpd
parentec63bf0b2aa743c007a46bb1587a5dbc0b5176a4 (diff)
downloadlinhes_pkgbuild-f3b88a74a85c8a877dbdcb61ed10fcca9b012c47.zip
linhes_pkgbuild-f3b88a74a85c8a877dbdcb61ed10fcca9b012c47.tar.gz
linhes_pkgbuild-f3b88a74a85c8a877dbdcb61ed10fcca9b012c47.tar.bz2
ntp: update to 4.2.8.p10
Diffstat (limited to 'abs/core/ntp/ntpd')
-rwxr-xr-xabs/core/ntp/ntpd47
1 files changed, 0 insertions, 47 deletions
diff --git a/abs/core/ntp/ntpd b/abs/core/ntp/ntpd
deleted file mode 100755
index 480fa10..0000000
--- a/abs/core/ntp/ntpd
+++ /dev/null
@@ -1,47 +0,0 @@
-#!/bin/bash
-
-. /etc/rc.conf
-. /etc/rc.d/functions
-. /etc/conf.d/ntpd.conf
-
-unset PID
-PIDFILE='/run/ntpd.pid'
-
-if [[ -r ${PIDFILE} ]]; then
- read -r PID <"${PIDFILE}"
- if [[ -n ${PID} && ! -d /proc/${PID} ]]; then
- rm -f "${PIDFILE}"
- unset PID
- fi
-fi
-
-case "$1" in
- start)
- stat_busy "Starting NTP Daemon"
- if [[ -z ${PID} ]] && /usr/bin/ntpd ${NTPD_ARGS} -p "${PIDFILE}" &>/dev/null; then
- add_daemon ntpd
- stat_done
- else
- stat_fail
- exit 1
- fi
- ;;
- stop)
- stat_busy "Stopping NTP Daemon"
- if [[ -n ${PID} ]] && kill "${PID}" &>/dev/null; then
- rm ${PIDFILE}
- rm_daemon ntpd
- stat_done
- else
- stat_fail
- exit 1
- fi
- ;;
- restart)
- $0 stop
- sleep 1
- $0 start
- ;;
- *)
- echo "usage: $0 {start|stop|restart}"
-esac