This repository has been archived on 2023-08-20. You can view files and clone it, but cannot push or open issues or pull requests.
Files
lsts_glued/packages/nfs-utils/fs/etc/rc.d/nfs-client
2015-03-02 16:58:29 +00:00

21 lines
310 B
Plaintext

start()
{
/usr/bin/rpcbind
if [ $? -ne 0 ]; then
echo "ERROR: failed to start rpcbind."
return 1
fi
/usr/bin/rpc.statd
if [ $? -ne 0 ]; then
echo "ERROR: failed to start rpc.statd."
return 1
fi
}
stop()
{
killall rpc.mountd
killall rpc.statd
}