diff options
author | James Turnbull <james@lovedthanlost.net> | 2010-05-14 22:19:11 +1000 |
---|---|---|
committer | test branch <puppet-dev@googlegroups.com> | 2010-02-17 06:50:53 -0800 |
commit | 91e6022e3e27df8cf8194e5ded98c206b42a2d11 (patch) | |
tree | eef10184d435669708c5468f6de0829c52ce94e7 /lib | |
parent | 379bda02a57585168b44b66156681b31d1db79a5 (diff) | |
download | puppet-91e6022e3e27df8cf8194e5ded98c206b42a2d11.tar.gz puppet-91e6022e3e27df8cf8194e5ded98c206b42a2d11.tar.xz puppet-91e6022e3e27df8cf8194e5ded98c206b42a2d11.zip |
Fixes incorrect line in partial CRL fix
Diffstat (limited to 'lib')
-rw-r--r-- | lib/puppet/ssl/host.rb | 1 |
1 files changed, 0 insertions, 1 deletions
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 |