diff options
Diffstat (limited to 'lib/puppet/server.rb')
-rw-r--r-- | lib/puppet/server.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/puppet/server.rb b/lib/puppet/server.rb index 6809c7c36..3720f25c8 100644 --- a/lib/puppet/server.rb +++ b/lib/puppet/server.rb @@ -60,7 +60,7 @@ module Puppet store = OpenSSL::X509::Store.new store.purpose = OpenSSL::X509::PURPOSE_ANY store.flags = OpenSSL::X509::V_FLAG_CRL_CHECK_ALL|OpenSSL::X509::V_FLAG_CRL_CHECK - store.add_cert(@cacert) + store.add_file(@cacertfile) store.add_crl(crl) return store end |