contrib/at/atd
2007-05-30 16:07:51 +02:00

24 lines
271 B
Bash
Executable File

#!/bin/sh
#
# /etc/rc.d/atd: start/stop at daemon
#
case $1 in
start)
/usr/sbin/atd
;;
stop)
killall -q /usr/sbin/atd
;;
restart)
$0 stop
sleep 2
$0 start
;;
*)
echo "usage: $0 [start|stop|restart]"
;;
esac
# End of file