Sha256: 7d9a863203f915cf7b88f3f681fe32bee6295b86f1dc5203e600d838e4360888

Contents?: true

Size: 539 Bytes

Versions: 8

Compression:

Stored size: 539 Bytes

Contents

# frozen_string_literal: true

module Puppet
  Puppet::Type.type(:file).newproperty(:ctime) do
    desc "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

8 entries across 8 versions & 1 rubygems

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