Sha256: 10312d7122030ad6a8b63f19fbce059d5341b4d28bc7bba85bba25215c1e7622

Contents?: true

Size: 542 Bytes

Versions: 4

Compression:

Stored size: 542 Bytes

Contents

# frozen_string_literal: true

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
      stat = @resource.stat
      if stat
        current_value = stat.ctime
      end
      current_value.to_s
    end

    validate do |_val|
      fail "ctime is read-only"
    end
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
puppet-8.4.0 lib/puppet/type/file/ctime.rb
puppet-8.4.0-x86-mingw32 lib/puppet/type/file/ctime.rb
puppet-8.4.0-x64-mingw32 lib/puppet/type/file/ctime.rb
puppet-8.4.0-universal-darwin lib/puppet/type/file/ctime.rb