diff options
author | luke <luke@980ebf18-57e1-0310-9a29-db15c13687c0> | 2007-04-30 16:19:37 +0000 |
---|---|---|
committer | luke <luke@980ebf18-57e1-0310-9a29-db15c13687c0> | 2007-04-30 16:19:37 +0000 |
commit | c2bc8481eb2507c2127f5c67f698f85a222acb4a (patch) | |
tree | 088fcc75d997d66f395eaa702d47d6cc6d4c57c9 /lib/puppet | |
parent | 7e971436c9967c5bfe95a418911db41f4e937696 (diff) | |
download | puppet-c2bc8481eb2507c2127f5c67f698f85a222acb4a.tar.gz puppet-c2bc8481eb2507c2127f5c67f698f85a222acb4a.tar.xz puppet-c2bc8481eb2507c2127f5c67f698f85a222acb4a.zip |
Adding purge => true to downloading of facts and plugins, and removing some extraneous logging from the provider base class
git-svn-id: https://reductivelabs.com/svn/puppet/trunk@2435 980ebf18-57e1-0310-9a29-db15c13687c0
Diffstat (limited to 'lib/puppet')
-rw-r--r-- | lib/puppet/network/client/master.rb | 1 | ||||
-rw-r--r-- | lib/puppet/provider.rb | 1 |
2 files changed, 1 insertions, 1 deletions
diff --git a/lib/puppet/network/client/master.rb b/lib/puppet/network/client/master.rb index c96b0c278..b967729b5 100644 --- a/lib/puppet/network/client/master.rb +++ b/lib/puppet/network/client/master.rb @@ -359,6 +359,7 @@ class Puppet::Network::Client::Master < Puppet::Network::Client :tag => "#{args[:name]}s", :owner => Process.uid, :group => Process.gid, + :purge => true, :backup => false } diff --git a/lib/puppet/provider.rb b/lib/puppet/provider.rb index a9c6c09eb..6157431bb 100644 --- a/lib/puppet/provider.rb +++ b/lib/puppet/provider.rb @@ -38,7 +38,6 @@ class Puppet::Provider # Define commands that are not optional. def self.commands(hash) optional_commands(hash) do |name, path| - Puppet.info "%s => %s" % [name, path] confine :exists => path end end |