summaryrefslogtreecommitdiffstats
path: root/pki/base/ra/lib/perl/PKI
diff options
context:
space:
mode:
authormharmsen <mharmsen@c9f7a03b-bd48-0410-a16d-cbbf54688b0b>2009-05-01 01:05:07 +0000
committermharmsen <mharmsen@c9f7a03b-bd48-0410-a16d-cbbf54688b0b>2009-05-01 01:05:07 +0000
commit2c7a42075d55a81dbe009c8e7013da4ac26f8dce (patch)
tree4ea62bb83f056bc3179f923075da24f409df802c /pki/base/ra/lib/perl/PKI
parentefb44e62448dc85ffe41311d47b0d0f8217f8b2e (diff)
downloadpki-2c7a42075d55a81dbe009c8e7013da4ac26f8dce.tar.gz
pki-2c7a42075d55a81dbe009c8e7013da4ac26f8dce.tar.xz
pki-2c7a42075d55a81dbe009c8e7013da4ac26f8dce.zip
Bugzilla Bug #498528 - Disable mod_revocator on RHEL since it will no longer
work with the updated mod_nss which is required for HSMs. git-svn-id: svn+ssh://svn.fedorahosted.org/svn/pki/trunk@421 c9f7a03b-bd48-0410-a16d-cbbf54688b0b
Diffstat (limited to 'pki/base/ra/lib/perl/PKI')
-rwxr-xr-xpki/base/ra/lib/perl/PKI/RA/DonePanel.pm6
1 files changed, 5 insertions, 1 deletions
diff --git a/pki/base/ra/lib/perl/PKI/RA/DonePanel.pm b/pki/base/ra/lib/perl/PKI/RA/DonePanel.pm
index bc8eaa919..086d51e4a 100755
--- a/pki/base/ra/lib/perl/PKI/RA/DonePanel.pm
+++ b/pki/base/ra/lib/perl/PKI/RA/DonePanel.pm
@@ -339,7 +339,11 @@ sub display
if( -e "/etc/fedora-release" ) {
print TMP_REVOCATOR_CONF "CRLEngine off\n";
} else {
- print TMP_REVOCATOR_CONF "CRLEngine on\n";
+ # Bugzilla Bug #498528 Disable mod_revocator on RHEL
+ # since it will no longer work
+ # with the updated mod_nss which
+ # is required for HSMs
+ print TMP_REVOCATOR_CONF "CRLEngine off\n";
}
} else {
print TMP_REVOCATOR_CONF $_;