mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-10-20 03:41:51 +02:00
15 lines
222 B
Plaintext
15 lines
222 B
Plaintext
#!/sbin/openrc-run
|
|
|
|
name=${RC_SVCNAME}
|
|
|
|
pidfile="/run/${RC_SVCNAME}.pid"
|
|
|
|
command="/usr/sbin/automount"
|
|
command_args="$automount_opts --pid-file $pidfile"
|
|
command_background="yes"
|
|
|
|
depend() {
|
|
need net
|
|
after firewall
|
|
}
|