diff options
author | James Turnbull <james@lovedthanlost.net> | 2008-09-10 13:48:52 +1000 |
---|---|---|
committer | James Turnbull <james@lovedthanlost.net> | 2008-09-12 12:09:16 +1000 |
commit | d4d3213a4a8bc7be93a0adb85bf29b5739c7a81d (patch) | |
tree | 57c9ddc4879abf0c39e4bae1d8484dd3b2845a08 | |
parent | b88df5ab32cc3e58b2e06d06c1f1694cfca1cba6 (diff) | |
download | puppet-d4d3213a4a8bc7be93a0adb85bf29b5739c7a81d.tar.gz puppet-d4d3213a4a8bc7be93a0adb85bf29b5739c7a81d.tar.xz puppet-d4d3213a4a8bc7be93a0adb85bf29b5739c7a81d.zip |
Fixed debug messages in package type - thanks to Todd Zullinger for this fix
-rw-r--r-- | CHANGELOG | 2 | ||||
-rw-r--r-- | lib/puppet/type/package.rb | 4 |
2 files changed, 4 insertions, 2 deletions
@@ -1,4 +1,6 @@ 0.24.x + Fixed debug messages in package type - thanks to Todd Zullinger for this fix + Updated Red Hat spec file Fixes #1455 - Adds HP-UX support for user type diff --git a/lib/puppet/type/package.rb b/lib/puppet/type/package.rb index f004f7c42..0cea39197 100644 --- a/lib/puppet/type/package.rb +++ b/lib/puppet/type/package.rb @@ -138,8 +138,8 @@ module Puppet # that can't query versions. return true else - self.debug "is is %s, latest %s is %s" % - [is.inspect, @resource.name, @latest.inspect] + self.debug "%s %s is installed, latest is %s" % + [@resource.name, is.inspect, @latest.inspect] end when :absent return true if is == :absent or is == :purged |