# File lib/puppet/file_serving/base.rb, line 69
69:   def stat
70:     @stat_method ||= self.links == :manage ? :lstat : :stat
71:     File.send(@stat_method, full_path)
72:   end