diff options
author | Markus Roberts <Markus@reality.com> | 2010-01-20 08:00:09 -0800 |
---|---|---|
committer | James Turnbull <james@lovedthanlost.net> | 2010-01-21 07:26:18 +1100 |
commit | 94e269cbc98e774630426aa0a0dc70c1db82502d (patch) | |
tree | 6767a6b5ca1e32a5a78f60285131651809ef76cd /lib/puppet | |
parent | 9636b93ad195c0fbcd3834c2852912766708b481 (diff) | |
download | puppet-94e269cbc98e774630426aa0a0dc70c1db82502d.tar.gz puppet-94e269cbc98e774630426aa0a0dc70c1db82502d.tar.xz puppet-94e269cbc98e774630426aa0a0dc70c1db82502d.zip |
Uncommeniting the fix for #3001
Diffstat (limited to 'lib/puppet')
-rw-r--r-- | lib/puppet/file_serving/mount/file.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/puppet/file_serving/mount/file.rb b/lib/puppet/file_serving/mount/file.rb index 197a7206c..e1eaf6052 100644 --- a/lib/puppet/file_serving/mount/file.rb +++ b/lib/puppet/file_serving/mount/file.rb @@ -25,7 +25,7 @@ class Puppet::FileServing::Mount::File < Puppet::FileServing::Mount file = ::File.join(full_path, relative_path) - if !(FileTest.exist?(file) )# or FileTest.symlink?(file)) + if !(FileTest.exist?(file) or FileTest.symlink?(file)) Puppet.info("File does not exist or is not accessible: #{file}") return nil end |