initial buildroot for linux 5.15
This commit is contained in:
@@ -0,0 +1,47 @@
|
||||
#!/bin/sh
|
||||
#
|
||||
# Starts at daemon
|
||||
#
|
||||
|
||||
umask 077
|
||||
|
||||
start() {
|
||||
# Since /var/spool can be linked to /tmp (tmpfs)
|
||||
# /var/spool/cron/atjobs/.SEQ created could be not available
|
||||
# Check if not exists otherwise create it
|
||||
if [ ! -f /var/spool/cron/atjobs/.SEQ ]; then
|
||||
mkdir -p /var/spool/cron/atjobs/
|
||||
touch /var/spool/cron/atjobs/.SEQ
|
||||
printf "atd: created missing .SEQ file (atjobs will be lost on reboot)\n"
|
||||
fi
|
||||
|
||||
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 $?
|
||||
Reference in New Issue
Block a user