diff options
author | luke <luke@980ebf18-57e1-0310-9a29-db15c13687c0> | 2006-04-03 18:05:58 +0000 |
---|---|---|
committer | luke <luke@980ebf18-57e1-0310-9a29-db15c13687c0> | 2006-04-03 18:05:58 +0000 |
commit | a791d983a685015f4671bd6b28c206787a00a4ff (patch) | |
tree | 9122105b77156541cae2cc4eda9f280369ce41be | |
parent | 4daf2c13ae5cdab4ee0de1fcb8ea7f0fc7b3573a (diff) | |
download | puppet-a791d983a685015f4671bd6b28c206787a00a4ff.tar.gz puppet-a791d983a685015f4671bd6b28c206787a00a4ff.tar.xz puppet-a791d983a685015f4671bd6b28c206787a00a4ff.zip |
Fixing a logging bug that apparently resulted from logging changes a while ago.
git-svn-id: https://reductivelabs.com/svn/puppet/trunk@1056 980ebf18-57e1-0310-9a29-db15c13687c0
-rwxr-xr-x | lib/puppet/type/pfile/mode.rb | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/puppet/type/pfile/mode.rb b/lib/puppet/type/pfile/mode.rb index 74e8b7f7e..ee6fb37d8 100755 --- a/lib/puppet/type/pfile/mode.rb +++ b/lib/puppet/type/pfile/mode.rb @@ -107,8 +107,7 @@ module Puppet @parent.stat(true) self.retrieve if @is == :absent - self.debug "File does not exist; cannot set mode" % - @parent[:path] + self.debug "File does not exist; cannot set mode" return nil end |