From 91e6022e3e27df8cf8194e5ded98c206b42a2d11 Mon Sep 17 00:00:00 2001 From: James Turnbull Date: Fri, 14 May 2010 22:19:11 +1000 Subject: Fixes incorrect line in partial CRL fix --- lib/puppet/ssl/host.rb | 1 - 1 file changed, 1 deletion(-) diff --git a/lib/puppet/ssl/host.rb b/lib/puppet/ssl/host.rb index 958408359..0a3c02958 100644 --- a/lib/puppet/ssl/host.rb +++ b/lib/puppet/ssl/host.rb @@ -213,7 +213,6 @@ class Puppet::SSL::Host # If there's a CRL, add it to our store. if crl = Puppet::SSL::CertificateRevocationList.find(CA_NAME) - @ssl_store.flags = OpenSSL::X509::V_FLAG_CRL_CHECK_ALL|OpenSSL::X509::V_FLAG_CRL_CHECK @ssl_store.flags = OpenSSL::X509::V_FLAG_CRL_CHECK_ALL|OpenSSL::X509::V_FLAG_CRL_CHECK if Puppet.settings[:certificate_revocation] @ssl_store.add_crl(crl.content) end -- cgit