# File lib/puppet/util/filetype.rb, line 96 96: def read 97: if File.exist?(@path) 98: File.read(@path) 99: else 100: return nil 101: end 102: end