blob: c5ea208666b4ad0fd539087144dec4e4ae66c5d0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#!/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
}
|