mirror of
https://github.com/home-assistant/operating-system.git
synced 2026-04-30 05:31:18 +01:00
39 lines
494 B
Bash
Executable File
39 lines
494 B
Bash
Executable File
#!/bin/sh
|
|
#
|
|
# Starts at daemon
|
|
#
|
|
|
|
umask 077
|
|
|
|
start() {
|
|
printf "Starting atd: "
|
|
start-stop-daemon --start --quiet --make-pidfile --pidfile /var/run/atd.pid --background --exec /usr/sbin/atd -- -f
|
|
echo "OK"
|
|
}
|
|
stop() {
|
|
printf "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
|
|
;;
|
|
*)
|
|
echo "Usage: $0 {start|stop|restart}"
|
|
exit 1
|
|
esac
|
|
|
|
exit $?
|