# File lib/puppet/file_serving/content.rb, line 37
37:   def content
38:     unless @content
39:       # This stat can raise an exception, too.
40:       raise(ArgumentError, "Cannot read the contents of links unless following links") if stat.ftype == "symlink"
41: 
42:       @content = ::File.read(full_path)
43:     end
44:     @content
45:   end