Fixed misformated output from nfslock script (bz 154648)

This commit is contained in:
Steve Dickson 2005-04-13 14:27:40 +00:00
parent d4be3ab003
commit bb3850c6cb
2 changed files with 6 additions and 3 deletions

View File

@ -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 <SteveD@RedHat.com> 1.0.7-6
- Fixed misformated output from nfslock script (bz 154648)
* Mon Mar 29 2005 Steve Dickson <SteveD@RedHat.com> 1.0.7-4
- Fixed a compile error on x86_64 machines in the gss code.
- Updated the statd-notify-hostname.patch to eliminate

View File

@ -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