Sha256: f22c79fd05fa6813606fb54d4f05c8a0a6c09c297f8b56afc937d642bf394c6b

Contents?: true

Size: 540 Bytes

Versions: 20

Compression:

Stored size: 540 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

20 entries across 20 versions & 1 rubygems

Version Path
puppet-8.3.0 lib/puppet/type/file/ctime.rb
puppet-8.3.0-x86-mingw32 lib/puppet/type/file/ctime.rb
puppet-8.3.0-x64-mingw32 lib/puppet/type/file/ctime.rb
puppet-8.3.0-universal-darwin lib/puppet/type/file/ctime.rb
puppet-8.3.1 lib/puppet/type/file/ctime.rb
puppet-8.3.1-x86-mingw32 lib/puppet/type/file/ctime.rb
puppet-8.3.1-x64-mingw32 lib/puppet/type/file/ctime.rb
puppet-8.3.1-universal-darwin lib/puppet/type/file/ctime.rb
puppet-8.2.0 lib/puppet/type/file/ctime.rb
puppet-8.2.0-x86-mingw32 lib/puppet/type/file/ctime.rb
puppet-8.2.0-x64-mingw32 lib/puppet/type/file/ctime.rb
puppet-8.2.0-universal-darwin lib/puppet/type/file/ctime.rb
puppet-8.1.0 lib/puppet/type/file/ctime.rb
puppet-8.1.0-x86-mingw32 lib/puppet/type/file/ctime.rb
puppet-8.1.0-x64-mingw32 lib/puppet/type/file/ctime.rb
puppet-8.1.0-universal-darwin lib/puppet/type/file/ctime.rb
puppet-8.0.1 lib/puppet/type/file/ctime.rb
puppet-8.0.1-x86-mingw32 lib/puppet/type/file/ctime.rb
puppet-8.0.1-x64-mingw32 lib/puppet/type/file/ctime.rb
puppet-8.0.1-universal-darwin lib/puppet/type/file/ctime.rb