| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 | #!/bin/sh#PKG nfs-utils#INIT 70. /etc/rc.confcase $1 inautostop) ;;autostart)	test x"${portmap:-NO}" = x"NO" && exit 0	test x"${nfs_server:-NO}" = x"NO" && exit 0	exec sh $0 start	;;start)	/bin/mkdir -p /var/lib/nfs/v4recovery	/bin/touch /var/lib/nfs/rmtab	/bin/touch /var/lib/nfs/etab	/bin/touch /var/lib/nfs/xtab	/bin/touch /var/lib/nfs/sm	chown nfs:nfs /var/lib/nfs/sm	/usr/sbin/exportfs -r	/usr/sbin/mountd	/usr/sbin/nfsd	/usr/sbin/statd	if [ ${nfs_server_version} -eq 4 ];then		mkdir -p /var/lib/nfs/rpc_pipefs		mount -t rpc_pipefs rpc_pipefs /var/lib/nfs/rpc_pipefs		/usr/sbin/idmapd		/usr/sbin/svcgssd	fi	;;stop)	pkill nfsd	pkill mountd	pkill statd	if [ ${nfs_server_version} -eq 4 ];then		pkill idmapd		pkill svcgssd	fi	;;restart)	sh $0 stop	sh $0 start	;;*)	echo "Usage: $0 {start | stop | restart}"	exit 1	;;esacexit $?
 |