From 94e269cbc98e774630426aa0a0dc70c1db82502d Mon Sep 17 00:00:00 2001 From: Markus Roberts Date: Wed, 20 Jan 2010 08:00:09 -0800 Subject: Uncommeniting the fix for #3001 --- lib/puppet/file_serving/mount/file.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- cgit