diff options
| author | Luke Kanies <luke@madstop.com> | 2008-05-07 13:29:38 -0500 |
|---|---|---|
| committer | Luke Kanies <luke@madstop.com> | 2008-05-07 13:29:38 -0500 |
| commit | 1cfb0215a4d56af9ac1e0c672d9ae597dfde846e (patch) | |
| tree | 48529190b224006b12596ffafecbf9ffb49afca0 /lib/puppet/network | |
| parent | 0365184aaec4d71f7fa93fc1534ae10f8f842bb7 (diff) | |
| download | puppet-1cfb0215a4d56af9ac1e0c672d9ae597dfde846e.tar.gz puppet-1cfb0215a4d56af9ac1e0c672d9ae597dfde846e.tar.xz puppet-1cfb0215a4d56af9ac1e0c672d9ae597dfde846e.zip | |
The CRL is now automatically used or ignored.
Previously, you had to configure whether you wanted the CRL or not,
which resulted in errors all the time when it was configured but
unavailable.
Now, Puppet will always create and try to use it, but you won't
get failures if it's unavailable.
Diffstat (limited to 'lib/puppet/network')
| -rw-r--r-- | lib/puppet/network/http/webrick.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/puppet/network/http/webrick.rb b/lib/puppet/network/http/webrick.rb index 3e7a28598..eacf81ec2 100644 --- a/lib/puppet/network/http/webrick.rb +++ b/lib/puppet/network/http/webrick.rb @@ -107,7 +107,7 @@ class Puppet::Network::HTTP::WEBrick results[:SSLCACertificateFile] = Puppet[:localcacert] results[:SSLVerifyClient] = OpenSSL::SSL::VERIFY_PEER - results[:SSLCertificateStore] = host.ssl_store if Puppet[:crl] + results[:SSLCertificateStore] = host.ssl_store results end |
