summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarkus Roberts <Markus@reality.com>2010-01-20 08:00:09 -0800
committerJames Turnbull <james@lovedthanlost.net>2010-01-21 07:26:18 +1100
commit94e269cbc98e774630426aa0a0dc70c1db82502d (patch)
tree6767a6b5ca1e32a5a78f60285131651809ef76cd
parent9636b93ad195c0fbcd3834c2852912766708b481 (diff)
downloadpuppet-94e269cbc98e774630426aa0a0dc70c1db82502d.tar.gz
puppet-94e269cbc98e774630426aa0a0dc70c1db82502d.tar.xz
puppet-94e269cbc98e774630426aa0a0dc70c1db82502d.zip
Uncommeniting the fix for #3001
-rw-r--r--lib/puppet/file_serving/mount/file.rb2
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