From cb95dc753267205bd5b352434bc5518dcd07e70d Mon Sep 17 00:00:00 2001 From: Luke Kanies Date: Mon, 11 Jul 2005 17:19:37 +0000 Subject: ok, verbose => info git-svn-id: https://reductivelabs.com/svn/puppet/library/trunk@352 980ebf18-57e1-0310-9a29-db15c13687c0 --- lib/puppet/type/pfile.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/puppet/type/pfile.rb b/lib/puppet/type/pfile.rb index cebb8c4b5..98c7ff7bd 100644 --- a/lib/puppet/type/pfile.rb +++ b/lib/puppet/type/pfile.rb @@ -74,7 +74,7 @@ module Puppet case @checktype when "md5": if FileTest.directory?(self.parent[:path]) - Puppet.verbose "Cannot MD5 sum directory %s" % + Puppet.info "Cannot MD5 sum directory %s" % self.parent[:path] end File.open(self.parent[:path]) { |file| @@ -82,7 +82,7 @@ module Puppet } when "md5lite": if FileTest.directory?(self.parent[:path]) - Puppet.verbose "Cannot MD5 sum directory %s" % + Puppet.info "Cannot MD5 sum directory %s" % self.parent[:path] end File.open(self.parent[:path]) { |file| -- cgit