summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLuke Kanies <luke@madstop.com>2005-07-11 17:18:52 +0000
committerLuke Kanies <luke@madstop.com>2005-07-11 17:18:52 +0000
commit459287caf33ede89f37dbe8168de44c98377811f (patch)
tree5bd668ceb260fd6268da473d9d212963fa5a14ba
parent600f272c7f61bc645d6f0ab4920c692e8190b789 (diff)
downloadpuppet-459287caf33ede89f37dbe8168de44c98377811f.tar.gz
puppet-459287caf33ede89f37dbe8168de44c98377811f.tar.xz
puppet-459287caf33ede89f37dbe8168de44c98377811f.zip
duh, somehow added Blink calls in there...
git-svn-id: https://reductivelabs.com/svn/puppet/library/trunk@351 980ebf18-57e1-0310-9a29-db15c13687c0
-rw-r--r--lib/puppet/type/pfile.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/puppet/type/pfile.rb b/lib/puppet/type/pfile.rb
index e5b657831..cebb8c4b5 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])
- Blink.verbose "Cannot MD5 sum directory %s" %
+ Puppet.verbose "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])
- Blink.verbose "Cannot MD5 sum directory %s" %
+ Puppet.verbose "Cannot MD5 sum directory %s" %
self.parent[:path]
end
File.open(self.parent[:path]) { |file|