From 486695f0272d1736cc9f50f270505ad3f135c46e Mon Sep 17 00:00:00 2001 From: Nalin Dahyabhai Date: May 04 2010 19:32:34 +0000 Subject: - fix output of kprop's init script's "status" and "reload" commands (#588222) --- diff --git a/kpropd.init b/kpropd.init index 2f0f623..7f2f542 100755 --- a/kpropd.init +++ b/kpropd.init @@ -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 diff --git a/krb5.spec b/krb5.spec index 49fe4aa..6163a83 100644 --- a/krb5.spec +++ b/krb5.spec @@ -10,7 +10,7 @@ Summary: The Kerberos network authentication system Name: krb5 Version: 1.7.1 -Release: 7%{?dist} +Release: 8%{?dist} # Maybe we should explode from the now-available-to-everybody tarball instead? # http://web.mit.edu/kerberos/dist/krb5/1.7/krb5-1.7.1-signed.tar Source0: krb5-%{version}.tar.gz @@ -225,6 +225,9 @@ to obtain initial credentials from a KDC using a private key and a certificate. %changelog +* Tue May 4 2010 Nalin Dahyabhai 1.7.1-8 +- fix output of kprop's init script's "status" and "reload" commands (#588222) + * Tue Apr 20 2010 Nalin Dahyabhai 1.7.1-7 - incorporate patch to fix double-free in the KDC (CVE-2010-1320, #584093)