mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-11-06 19:32:18 +01:00
20 lines
314 B
Bash
20 lines
314 B
Bash
#!/sbin/openrc-run
|
|
|
|
description="A command scheduling daemon"
|
|
|
|
command="/usr/sbin/atd"
|
|
command_args="
|
|
-f
|
|
${load_average:+"-l $load_average"}
|
|
${batch_interval:+"-b $batch_interval"}
|
|
$command_args
|
|
"
|
|
command_background="yes"
|
|
pidfile="/run/$RC_SVCNAME.pid"
|
|
|
|
depend() {
|
|
need clock
|
|
use logger
|
|
after localmount
|
|
}
|