Sha256: 199c9d2081945ab62b7d166d87b3713ff588fac4d027ff0c92a21c6c9a7250dd
Contents?: true
Size: 445 Bytes
Versions: 493
Compression:
Stored size: 445 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 if stat = @resource.stat current_value = stat.mtime end current_value end validate do |val| fail "mtime is read-only" end end end
Version data entries
493 entries across 493 versions & 3 rubygems