diff options
author | John A. Barbuto <jbarbuto@corp.sourceforge.com> | 2009-10-26 14:02:35 -0700 |
---|---|---|
committer | James Turnbull <james@lovedthanlost.net> | 2009-10-27 12:17:20 +1100 |
commit | ff3a7bc17b66b73f5cf155a2ffb62ccd85f9e9bc (patch) | |
tree | 25867986fbd53b50d4278750aa58a8c7221986d3 /lib/puppet/application | |
parent | 594c774dd466c85eae829eaba3898d02ae9538ca (diff) | |
download | puppet-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/application')
-rw-r--r-- | lib/puppet/application/puppetd.rb | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/lib/puppet/application/puppetd.rb b/lib/puppet/application/puppetd.rb index 26c9f825e..56aaf9370 100644 --- a/lib/puppet/application/puppetd.rb +++ b/lib/puppet/application/puppetd.rb @@ -160,13 +160,6 @@ Puppet::Application.new(:puppetd) do exit(14) end - # FIXME: we should really figure out how to distribute the CRL - # to clients. In the meantime, we just disable CRL checking if - # the CRL file doesn't exist - unless File::exist?(Puppet[:cacrl]) - Puppet[:cacrl] = nil - end - handlers = nil if options[:serve].empty? |