Sha256: d7f4da0c596d6085f9023a3041a19ca590797dcfc3a33910ad28cbcacf2a1897
Contents?: true
Size: 456 Bytes
Versions: 220
Compression:
Stored size: 456 Bytes
Contents
module Puppet Puppet::Type.type(:file).newproperty(:mtime) do desc %q{A read-only state to check the file mtime. On \*nix-like systems, this is the time of the most recent change to the content of the file.} def retrieve current_value = :absent stat = @resource.stat if stat current_value = stat.mtime end current_value end validate do |val| fail "mtime is read-only" end end end
Version data entries
220 entries across 220 versions & 1 rubygems