# File lib/puppet/util/filetype.rb, line 91 91: def read 92: if File.exist?(@path) 93: File.read(@path) 94: else 95: return nil 96: end 97: end