From d4d3213a4a8bc7be93a0adb85bf29b5739c7a81d Mon Sep 17 00:00:00 2001 From: James Turnbull Date: Wed, 10 Sep 2008 13:48:52 +1000 Subject: Fixed debug messages in package type - thanks to Todd Zullinger for this fix --- CHANGELOG | 2 ++ lib/puppet/type/package.rb | 4 ++-- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index f63fe4ccc..7cd7d0599 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -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 -- cgit