mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-09-21 13:41:20 +02:00
14 lines
248 B
Plaintext
14 lines
248 B
Plaintext
#!/sbin/openrc-run
|
|
|
|
description="hd-idle"
|
|
|
|
pidfile="/run/$RC_SVCNAME.pid"
|
|
command="/usr/sbin/hd-idle"
|
|
command_args="-l ${LOGFILE} -i 0 -c ${DISK_TYPE} -a ${DISK} -i ${IDLE_TIME}"
|
|
command_background=yes
|
|
|
|
depend() {
|
|
need localmount
|
|
after modules
|
|
}
|