summaryrefslogtreecommitdiffstats
path: root/lib/puppet
diff options
context:
space:
mode:
authorMarkus Roberts <Markus@reality.com>2010-07-18 19:42:16 -0700
committerMarkus Roberts <Markus@reality.com>2010-07-18 19:42:16 -0700
commit5b68afe0be7abd4f6743c4ad05513b6879f40153 (patch)
tree4370fd5ea283343b7e4e731757fc156b577832da /lib/puppet
parentdd03ac9fa29fce36eb64a5f831be8757f2f96f5c (diff)
downloadpuppet-5b68afe0be7abd4f6743c4ad05513b6879f40153.tar.gz
puppet-5b68afe0be7abd4f6743c4ad05513b6879f40153.tar.xz
puppet-5b68afe0be7abd4f6743c4ad05513b6879f40153.zip
Fix for #4255 -- misleading diagnostic message
A diagnostic message was left in the code durring development. Now it's gone.
Diffstat (limited to 'lib/puppet')
-rwxr-xr-xlib/puppet/type/file/source.rb2
1 files changed, 0 insertions, 2 deletions
diff --git a/lib/puppet/type/file/source.rb b/lib/puppet/type/file/source.rb
index 05da79b3d..2eaf4a33f 100755
--- a/lib/puppet/type/file/source.rb
+++ b/lib/puppet/type/file/source.rb
@@ -106,8 +106,6 @@ module Puppet
next if metadata_method == :checksum and metadata.ftype == "directory"
if resource[param_name].nil? or resource[param_name] == :absent
- v = metadata.send(metadata_method)
- resource.info "Setting #{param_name} to #{v}"
resource[param_name] = metadata.send(metadata_method)
end
end