diff options
Diffstat (limited to 'lib/puppet/client.rb')
-rw-r--r-- | lib/puppet/client.rb | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/puppet/client.rb b/lib/puppet/client.rb index ac2ec420c..b47d235a8 100644 --- a/lib/puppet/client.rb +++ b/lib/puppet/client.rb @@ -86,7 +86,7 @@ module Puppet end def cert=(cert) - Puppet.debug "Adding certificate" + #Puppet.debug "Adding certificate" @http.cert = cert @http.verify_mode = OpenSSL::SSL::VERIFY_PEER end @@ -99,6 +99,7 @@ module Puppet hash[:Path] ||= "/RPC2" hash[:Server] ||= "localhost" hash[:Port] ||= Puppet[:masterport] + Puppet.debug "Creating client for %s" % hash[:Server] @puppetserver = hash[:Server] |