Fixed #1610 - Raise "Filebucketed" messages to Notice priority

This commit is contained in:
James Turnbull 2008-09-26 14:26:45 +10:00
Родитель f792b645fa
Коммит 3749267093
2 изменённых файлов: 4 добавлений и 2 удалений

Просмотреть файл

@ -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

Просмотреть файл

@ -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: