[Clfs-commits] commit: r27 - /trunk/standard/cblfs/init.d/nfs-client

svn at cross-lfs.org svn at cross-lfs.org
Sun Nov 16 08:43:06 PST 2008


Author: jciccone
Date: Sun Nov 16 16:43:05 2008
New Revision: 27

Log: (empty)

Modified:
    trunk/standard/cblfs/init.d/nfs-client

Modified: trunk/standard/cblfs/init.d/nfs-client
==============================================================================
--- trunk/standard/cblfs/init.d/nfs-client (original)
+++ trunk/standard/cblfs/init.d/nfs-client Sun Nov 16 16:43:05 2008
@@ -17,16 +17,22 @@
 		loadproc /usr/sbin/rpc.statd
 
 		if [ "$NFS4" = "yes" ]; then
-			bootmesg "Starting NFS gssd"
+			boot_mesg "Starting NFS gssd..."
 			loadproc /usr/sbin/rpc.gssd -k ${NFS4KEYTAB:-/etc/nfs4.keytab}
 
-			bootmesg "Starting NFS idmapd"
+			boot_mesg "Starting NFS idmapd..."
 			loadproc /usr/sbin/rpc.idmapd
 		fi
 
 		;;
 
 	stop)
+		boot_mesg "Stopping NFS idmapd..."
+		killproc /usr/sbin/rpc.idmapd
+
+		boot_mesg "Stopping NFS gssd..."
+		killproc /usr/sbin/rpc.gssd
+
 		boot_mesg "Stopping NFS statd..."
 		killproc /usr/sbin/rpc.statd
 		;;
@@ -39,6 +45,8 @@
 
 	status)
 		statusproc /usr/sbin/rpc.statd
+		statusproc /usr/sbin/rpc.gssd
+		statusproc /usr/sbin/rpc.idmapd
 		;;
 
 	*)




More information about the Clfs-commits mailing list