- fix output of kprop's init script's "status" and "reload" commands

(#588222)
This commit is contained in:
Nalin Dahyabhai 2010-05-04 19:32:52 +00:00
parent 98bc7d7d76
commit 59f0148016
2 changed files with 11 additions and 4 deletions

View File

@ -65,13 +65,17 @@ case "$1" in
stop
;;
# We don't really "do" reload, so treat it as a restart.
restart|reload)
restart|force-reload)
stop
start
;;
reload)
echo "can't reload configuration, you have to restart it"
RETVAL=3
;;
status)
status -l kprop ${kpropd}
retval=$?
RETVAL=$?
;;
condrestart)
if [ -f /var/lock/subsys/kprop ] ; then
@ -80,7 +84,7 @@ case "$1" in
fi
;;
*)
echo $"Usage: $0 {start|stop|status|restart|condrestart}"
echo $"Usage: $0 {start|stop|status|reload|restart|condrestart}"
RETVAL=2
;;
esac

View File

@ -5,7 +5,7 @@
Summary: The Kerberos network authentication system
Name: krb5
Version: 1.8.1
Release: 3%{?dist}
Release: 4%{?dist}
# Maybe we should explode from the now-available-to-everybody tarball instead?
# http://web.mit.edu/kerberos/dist/krb5/1.8/krb5-1.8.1-signed.tar
Source0: krb5-%{version}.tar.gz
@ -622,6 +622,9 @@ exit 0
%{_sbindir}/uuserver
%changelog
* Tue May 4 2010 Nalin Dahyabhai <nalin@redhat.com> 1.8.1-4
- fix output of kprop's init script's "status" and "reload" commands (#588222)
* Tue Apr 20 2010 Nalin Dahyabhai <nalin@redhat.com> 1.8.1-3
- incorporate patch to fix double-free in the KDC (CVE-2010-1320, #581922)