summaryrefslogtreecommitdiffstats
path: root/lib/puppet/ssl
diff options
context:
space:
mode:
authorJohn A. Barbuto <jbarbuto@corp.sourceforge.com>2009-10-26 14:02:35 -0700
committerJames Turnbull <james@lovedthanlost.net>2009-10-27 12:17:20 +1100
commitff3a7bc17b66b73f5cf155a2ffb62ccd85f9e9bc (patch)
tree25867986fbd53b50d4278750aa58a8c7221986d3 /lib/puppet/ssl
parent594c774dd466c85eae829eaba3898d02ae9538ca (diff)
downloadpuppet-ff3a7bc17b66b73f5cf155a2ffb62ccd85f9e9bc.tar.gz
puppet-ff3a7bc17b66b73f5cf155a2ffb62ccd85f9e9bc.tar.xz
puppet-ff3a7bc17b66b73f5cf155a2ffb62ccd85f9e9bc.zip
Re-fixed #2750 - Stop disabling the CRL or checking for a disabled CRL
This was deprecated in commit 1cfb0215 and was keeping puppetd from starting in listen mode. Signed-off-by: John A. Barbuto <jbarbuto@corp.sourceforge.com>
Diffstat (limited to 'lib/puppet/ssl')
-rw-r--r--lib/puppet/ssl/certificate_revocation_list.rb2
1 files changed, 0 insertions, 2 deletions
diff --git a/lib/puppet/ssl/certificate_revocation_list.rb b/lib/puppet/ssl/certificate_revocation_list.rb
index f3c1a348a..c725bde48 100644
--- a/lib/puppet/ssl/certificate_revocation_list.rb
+++ b/lib/puppet/ssl/certificate_revocation_list.rb
@@ -46,8 +46,6 @@ class Puppet::SSL::CertificateRevocationList < Puppet::SSL::Base
# The name doesn't actually matter; there's only one CRL.
# We just need the name so our Indirector stuff all works more easily.
def initialize(fakename)
- raise Puppet::Error, "Cannot manage the CRL when :cacrl is set to false" if [false, "false"].include?(Puppet[:cacrl])
-
@name = "crl"
end