12 lines
296 B
Bash
Executable File
12 lines
296 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# Make sure the portmap service is running.
|
|
sv check rpcbind >/dev/null || exit 1
|
|
|
|
# Check/mount rpc_pipefs (loads sunrpc kernel module)
|
|
if ! mountpoint -q /var/lib/nfs/rpc_pipefs; then
|
|
mount -t rpc_pipefs rpc_pipefs /var/lib/nfs/rpc_pipefs -o defaults || exit 1
|
|
fi
|
|
|
|
exec rpc.gssd -f
|