From bc3a433f0baf1ad7d5d7d7ee601a74e275e04fa8 Mon Sep 17 00:00:00 2001 From: Luke Kanies Date: Thu, 4 Aug 2005 15:39:54 +0000 Subject: committing recent changes for testing git-svn-id: https://reductivelabs.com/svn/puppet/library/trunk@493 980ebf18-57e1-0310-9a29-db15c13687c0 --- lib/puppet.rb | 2 ++ lib/puppet/client.rb | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/lib/puppet.rb b/lib/puppet.rb index b6ca42348..0958d0240 100644 --- a/lib/puppet.rb +++ b/lib/puppet.rb @@ -72,6 +72,8 @@ module Puppet :server => "puppet", :rrdgraph => false, :noop => false, + :autosign => false, + :parseonly => false, :puppetport => 8139, :masterport => 8140, :loglevel => :notice, diff --git a/lib/puppet/client.rb b/lib/puppet/client.rb index b6361a33c..9a2b3367c 100644 --- a/lib/puppet/client.rb +++ b/lib/puppet/client.rb @@ -31,7 +31,7 @@ module Puppet Puppet.err "Could not load client network libs: %s" % $noclientnetworking else class NetworkClient < XMLRPC::Client - @@methods = [ :getconfig ] + @@methods = [ :getconfig, :getcert ] @@methods.each { |method| self.send(:define_method,method) { |*args| -- cgit