diff options
author | Luke Kanies <luke@madstop.com> | 2005-07-11 17:19:37 +0000 |
---|---|---|
committer | Luke Kanies <luke@madstop.com> | 2005-07-11 17:19:37 +0000 |
commit | cb95dc753267205bd5b352434bc5518dcd07e70d (patch) | |
tree | 2935540e92aab85ee3f7e84b037f760ab65ee95b | |
parent | 459287caf33ede89f37dbe8168de44c98377811f (diff) | |
download | puppet-cb95dc753267205bd5b352434bc5518dcd07e70d.tar.gz puppet-cb95dc753267205bd5b352434bc5518dcd07e70d.tar.xz puppet-cb95dc753267205bd5b352434bc5518dcd07e70d.zip |
ok, verbose => info
git-svn-id: https://reductivelabs.com/svn/puppet/library/trunk@352 980ebf18-57e1-0310-9a29-db15c13687c0
-rw-r--r-- | lib/puppet/type/pfile.rb | 4 |
1 files 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| |