Sha256: 5991470a2a5ce6c6c2235d21618a094ffa23c98cda299c72ff75858f7abbc481
Contents?: true
Size: 493 Bytes
Versions: 12
Compression:
Stored size: 493 Bytes
Contents
# frozen_string_literal: true 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.to_s end validate do |_val| fail "mtime is read-only" end end end
Version data entries
12 entries across 12 versions & 1 rubygems