mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-04-20 03:47:16 +02:00
12 lines
192 B
Bash
12 lines
192 B
Bash
#!/sbin/openrc-run
|
|
|
|
[ -e /etc/conf.d/nfs ] && . /etc/conf.d/nfs
|
|
|
|
command="/usr/sbin/rpc.gssd"
|
|
command_args="$OPTS_RPC_GSSD"
|
|
|
|
depend() {
|
|
use ypbind net
|
|
need portmap rpc.pipefs
|
|
after quota
|
|
}
|