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