[Pkg-puppet-devel] [SCM] Puppet packaging for Debian branch, master, updated. debian/0.24.6-1-356-g5718585
James Turnbull
james at lovedthanlost.net
Fri Jan 23 14:21:00 UTC 2009
The following commit has been merged in the master branch:
commit 3749267093923692d6e7bc0c9ce83b43a487b19e
Author: James Turnbull <james at lovedthanlost.net>
Date: Fri Sep 26 14:26:45 2008 +1000
Fixed #1610 - Raise "Filebucketed" messages to Notice priority
diff --git a/CHANGELOG b/CHANGELOG
index 5517d80..c54aa62 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,4 +1,6 @@
0.24.x
+ Fixed #1610 - Raise "Filebucketed" messages to Notice priority
+
Added a number of confines to package providers
Fixed #1609 - Added confines for the Gentoo, FreeBSD and
diff --git a/lib/puppet/type/file.rb b/lib/puppet/type/file.rb
index 875f8c3..2a5e61d 100644
--- a/lib/puppet/type/file.rb
+++ b/lib/puppet/type/file.rb
@@ -368,7 +368,7 @@ module Puppet
Find.find(self[:path]) do |f|
if File.file?(f)
sum = backup.backup(f)
- self.info "Filebucketed %s to %s with sum %s" %
+ self.notice "Filebucketed %s to %s with sum %s" %
[f, backup.name, sum]
end
end
@@ -403,7 +403,7 @@ module Puppet
case backup
when Puppet::Network::Client.client(:Dipper):
sum = backup.backup(file)
- self.info "Filebucketed to %s with sum %s" %
+ self.notice "Filebucketed to %s with sum %s" %
[backup.name, sum]
return true
when String:
--
Puppet packaging for Debian
More information about the Pkg-puppet-devel
mailing list