summaryrefslogtreecommitdiffstats
path: root/lib/puppet/file_serving/mount
diff options
context:
space:
mode:
Diffstat (limited to 'lib/puppet/file_serving/mount')
-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 4309ef79a..197a7206c 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)
+ if !(FileTest.exist?(file) )# or FileTest.symlink?(file))
Puppet.info("File does not exist or is not accessible: #{file}")
return nil
end