diff --git a/nfs-utils.spec b/nfs-utils.spec index 64921a2..c17b2e7 100644 --- a/nfs-utils.spec +++ b/nfs-utils.spec @@ -1,7 +1,7 @@ Summary: NFS utlilities and supporting daemons for the kernel NFS server. Name: nfs-utils Version: 1.0.7 -Release: 5 +Release: 6 # group all 32bit related archs %define all_32bit_archs i386 i686 athlon @@ -244,6 +244,9 @@ fi %config /etc/rc.d/init.d/nfslock %changelog +* Wed Apr 13 2005 Steve Dickson 1.0.7-6 +- Fixed misformated output from nfslock script (bz 154648) + * Mon Mar 29 2005 Steve Dickson 1.0.7-4 - Fixed a compile error on x86_64 machines in the gss code. - Updated the statd-notify-hostname.patch to eliminate diff --git a/nfslock.init b/nfslock.init index 0ac8e6a..f9798d5 100755 --- a/nfslock.init +++ b/nfslock.init @@ -74,13 +74,13 @@ start() { stop() { # Stop daemons. + echo -n $"Stopping NFS locking: " if [ "$USERLAND_LOCKD" ]; then - echo -n $"Stopping NFS locking: " killproc lockd - echo else killproc lockd -KILL fi + echo echo -n $"Stopping NFS statd: " killproc rpc.statd RETVAL=0