Sha256: 2e6eaa51b78103e71e9d4f40223d714b46f3d16c06eaf44ae7bbfc56bc35ca7f
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