summaryrefslogtreecommitdiffstats
path: root/yocto-poky/meta/recipes-extended/at/at/atd.init
diff options
context:
space:
mode:
Diffstat (limited to 'yocto-poky/meta/recipes-extended/at/at/atd.init')
-rw-r--r--yocto-poky/meta/recipes-extended/at/at/atd.init45
1 files changed, 0 insertions, 45 deletions
diff --git a/yocto-poky/meta/recipes-extended/at/at/atd.init b/yocto-poky/meta/recipes-extended/at/at/atd.init
deleted file mode 100644
index eca379b3c..000000000
--- a/yocto-poky/meta/recipes-extended/at/at/atd.init
+++ /dev/null
@@ -1,45 +0,0 @@
-#!/bin/sh
-#
-# Starts at daemon
-#
-
-umask 077
-
-# Source function library.
-. /etc/init.d/functions
-
-start() {
- echo -n "Starting atd: "
- start-stop-daemon --start --quiet --pidfile /var/run/atd.pid --background --exec /usr/sbin/atd -- -f
- echo "OK"
-}
-stop() {
- echo -n "Stopping atd: "
- start-stop-daemon --stop --quiet --pidfile /var/run/atd.pid
- echo "OK"
-}
-restart() {
- stop
- start
-}
-
-case "$1" in
- start)
- start
- ;;
- stop)
- stop
- ;;
- restart|reload)
- restart
- ;;
- status)
- status /usr/sbin/atd
- ;;
- *)
- echo $"Usage: $0 {start|stop|restart|status}"
- exit 1
-esac
-
-exit $?
-
OpenPOWER on IntegriCloud