You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
49 lines
1.0 KiB
Plaintext
49 lines
1.0 KiB
Plaintext
6 years ago
|
#! /bin/sh
|
||
|
### BEGIN INIT INFO
|
||
|
# Provides: atd
|
||
|
# Required-Start: $syslog $time $remote_fs
|
||
|
# Required-Stop: $syslog $time $remote_fs
|
||
|
# Default-Start: 2 3 4 5
|
||
|
# Default-Stop: 0 1 6
|
||
|
# Short-Description: Deferred execution scheduler
|
||
|
# Description: Debian init script for the atd deferred executions
|
||
|
# scheduler
|
||
|
### END INIT INFO
|
||
|
#
|
||
|
# Author: Ryan Murray <rmurray@debian.org>
|
||
|
#
|
||
|
|
||
|
PATH=/bin:/usr/bin:/sbin:/usr/sbin
|
||
|
DAEMON=/usr/sbin/atd
|
||
|
PIDFILE=/var/run/atd.pid
|
||
|
|
||
|
test -x $DAEMON || exit 0
|
||
|
|
||
|
. /lib/lsb/init-functions
|
||
|
|
||
|
case "$1" in
|
||
|
start)
|
||
|
log_daemon_msg "Starting deferred execution scheduler" "atd"
|
||
|
start_daemon -p $PIDFILE $DAEMON
|
||
|
log_end_msg $?
|
||
|
;;
|
||
|
stop)
|
||
|
log_daemon_msg "Stopping deferred execution scheduler" "atd"
|
||
|
killproc -p $PIDFILE $DAEMON
|
||
|
log_end_msg $?
|
||
|
;;
|
||
|
force-reload|restart)
|
||
|
$0 stop
|
||
|
$0 start
|
||
|
;;
|
||
|
status)
|
||
|
status_of_proc -p $PIDFILE $DAEMON atd && exit 0 || exit $?
|
||
|
;;
|
||
|
*)
|
||
|
echo "Usage: /etc/init.d/atd {start|stop|restart|force-reload|status}"
|
||
|
exit 1
|
||
|
;;
|
||
|
esac
|
||
|
|
||
|
exit 0
|