From ff3a7bc17b66b73f5cf155a2ffb62ccd85f9e9bc Mon Sep 17 00:00:00 2001 From: "John A. Barbuto" Date: Mon, 26 Oct 2009 14:02:35 -0700 Subject: 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 --- spec/unit/application/puppetd.rb | 8 -------- 1 file changed, 8 deletions(-) (limited to 'spec/unit/application/puppetd.rb') diff --git a/spec/unit/application/puppetd.rb b/spec/unit/application/puppetd.rb index 19dfaf3e0..e5a51675d 100755 --- a/spec/unit/application/puppetd.rb +++ b/spec/unit/application/puppetd.rb @@ -407,14 +407,6 @@ describe "puppetd" do @puppetd.setup_listen end - it "should set :cacrl to nil if no cacrl file" do - Puppet.expects(:[]).with(:cacrl).returns('cacrl') - File.expects(:exist?).with('cacrl').returns(false) - Puppet.expects(:[]=).with(:cacrl,nil) - - @puppetd.setup_listen - end - it "should create a server to listen on at least the Runner handler" do Puppet::Network::Server.expects(:new).with { |args| args[:xmlrpc_handlers] == [:Runner] } -- cgit