# File lib/puppet/util/loadedfile.rb, line 48 48: def stamp 49: if @stamp.nil? or (Time.now.to_i - @statted >= Puppet[:filetimeout]) 50: @statted = Time.now.to_i 51: begin 52: @stamp = File.stat(@file).ctime 53: rescue Errno::ENOENT 54: @stamp = Time.now 55: end 56: end 57: @stamp 58: end