From b6e4ef37f7ac4844697f1857cbcf03a2796db7d4 Mon Sep 17 00:00:00 2001 From: "John A. Barbuto" Date: Thu, 22 Oct 2009 18:16:16 -0700 Subject: Fixed #2750 - Set :cacrl to nil instead of 'false' in puppetd The latter is deprecated and was keeping puppetd from starting. Also added a test and fixed a typo in another test. Signed-off-by: John A. Barbuto --- lib/puppet/application/puppetd.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/puppet') diff --git a/lib/puppet/application/puppetd.rb b/lib/puppet/application/puppetd.rb index 4799d5571..26c9f825e 100644 --- a/lib/puppet/application/puppetd.rb +++ b/lib/puppet/application/puppetd.rb @@ -164,7 +164,7 @@ Puppet::Application.new(:puppetd) do # to clients. In the meantime, we just disable CRL checking if # the CRL file doesn't exist unless File::exist?(Puppet[:cacrl]) - Puppet[:cacrl] = 'false' + Puppet[:cacrl] = nil end handlers = nil -- cgit