update to 0.60
- adjust internals of logic for talking to dogtag to at least have a concept of non-agent cases - when talking to an IPA server's internal Dogtag instance, infer which ports the CA is listening on from the "dogtag_version" setting in the IPA configuration (Ade Lee) - send a notification (or log a message, whatever) when we save a new certificate (#766167)
This commit is contained in:
parent
a2fa86e022
commit
0310940a78
2
.gitignore
vendored
2
.gitignore
vendored
@ -40,3 +40,5 @@ certmonger-0.28.tar.gz
|
|||||||
/certmonger-0.56.tar.gz.sig
|
/certmonger-0.56.tar.gz.sig
|
||||||
/certmonger-0.59.tar.gz
|
/certmonger-0.59.tar.gz
|
||||||
/certmonger-0.59.tar.gz.sig
|
/certmonger-0.59.tar.gz.sig
|
||||||
|
/certmonger-0.60.tar.gz
|
||||||
|
/certmonger-0.60.tar.gz.sig
|
||||||
|
@ -19,8 +19,8 @@
|
|||||||
%endif
|
%endif
|
||||||
|
|
||||||
Name: certmonger
|
Name: certmonger
|
||||||
Version: 0.59
|
Version: 0.60
|
||||||
Release: 2%{?dist}
|
Release: 1%{?dist}
|
||||||
Summary: Certificate status monitor and PKI enrollment client
|
Summary: Certificate status monitor and PKI enrollment client
|
||||||
|
|
||||||
Group: System Environment/Daemons
|
Group: System Environment/Daemons
|
||||||
@ -151,8 +151,10 @@ exit 0
|
|||||||
|
|
||||||
%preun
|
%preun
|
||||||
%if %{systemd}
|
%if %{systemd}
|
||||||
|
if test $1 -eq 0 ; then
|
||||||
/bin/systemctl --no-reload disable certmonger.service > /dev/null 2>&1 || :
|
/bin/systemctl --no-reload disable certmonger.service > /dev/null 2>&1 || :
|
||||||
/bin/systemctl stop certmonger.service > /dev/null 2>&1 || :
|
/bin/systemctl stop certmonger.service > /dev/null 2>&1 || :
|
||||||
|
fi
|
||||||
%endif
|
%endif
|
||||||
%if %{sysvinit}
|
%if %{sysvinit}
|
||||||
if test $1 -eq 0 ; then
|
if test $1 -eq 0 ; then
|
||||||
@ -199,6 +201,18 @@ exit 0
|
|||||||
%endif
|
%endif
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Wed Sep 5 2012 Nalin Dahyabhai <nalin@redhat.com> 0.60-1
|
||||||
|
- adjust internals of logic for talking to dogtag to at least have a
|
||||||
|
concept of non-agent cases
|
||||||
|
- when talking to an IPA server's internal Dogtag instance, infer which
|
||||||
|
ports the CA is listening on from the "dogtag_version" setting in the
|
||||||
|
IPA configuration (Ade Lee)
|
||||||
|
- send a notification (or log a message, whatever) when we save a new
|
||||||
|
certificate (#766167)
|
||||||
|
|
||||||
|
* Mon Jul 30 2012 Nalin Dahyabhai <nalin@redhat.com>
|
||||||
|
- fix a bad %%preun scriptlet
|
||||||
|
|
||||||
* Wed Jul 18 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.59-2
|
* Wed Jul 18 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.59-2
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
|
||||||
|
|
||||||
@ -221,6 +235,8 @@ exit 0
|
|||||||
* Thu Jun 12 2012 Nalin Dahyabhai <nalin@redhat.com> 0.57-1
|
* Thu Jun 12 2012 Nalin Dahyabhai <nalin@redhat.com> 0.57-1
|
||||||
- clarify that the command passed to getcert -C is a "post"-save command
|
- clarify that the command passed to getcert -C is a "post"-save command
|
||||||
- add a "pre"-save command option to getcert, specified with the -B flag (#9)
|
- add a "pre"-save command option to getcert, specified with the -B flag (#9)
|
||||||
|
- after we notify of an impending not-valid-after approaching, don't do it
|
||||||
|
again immediately
|
||||||
|
|
||||||
* Sat Mar 3 2012 Nalin Dahyabhai <nalin@redhat.com> 0.56-1
|
* Sat Mar 3 2012 Nalin Dahyabhai <nalin@redhat.com> 0.56-1
|
||||||
- when a caller sets the is-default flag on a CA, and another CA is no longer
|
- when a caller sets the is-default flag on a CA, and another CA is no longer
|
||||||
|
Loading…
Reference in New Issue
Block a user