Sha256: 473c5df883d9be5b33a929a63eb141b1fd5463f1ae2c0096a1a1eff45b3750da

Contents?: true

Size: 505 Bytes

Versions: 220

Compression:

Stored size: 505 Bytes

Contents

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
    end

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

Version data entries

220 entries across 220 versions & 1 rubygems

Version Path
puppet-7.23.0 lib/puppet/type/file/ctime.rb
puppet-7.23.0-x86-mingw32 lib/puppet/type/file/ctime.rb
puppet-7.23.0-x64-mingw32 lib/puppet/type/file/ctime.rb
puppet-7.23.0-universal-darwin lib/puppet/type/file/ctime.rb
puppet-7.22.0 lib/puppet/type/file/ctime.rb
puppet-7.22.0-x86-mingw32 lib/puppet/type/file/ctime.rb
puppet-7.22.0-x64-mingw32 lib/puppet/type/file/ctime.rb
puppet-7.22.0-universal-darwin lib/puppet/type/file/ctime.rb
puppet-6.29.0 lib/puppet/type/file/ctime.rb
puppet-6.29.0-x86-mingw32 lib/puppet/type/file/ctime.rb
puppet-6.29.0-x64-mingw32 lib/puppet/type/file/ctime.rb
puppet-6.29.0-universal-darwin lib/puppet/type/file/ctime.rb
puppet-7.21.0 lib/puppet/type/file/ctime.rb
puppet-7.21.0-x86-mingw32 lib/puppet/type/file/ctime.rb
puppet-7.21.0-x64-mingw32 lib/puppet/type/file/ctime.rb
puppet-7.21.0-universal-darwin lib/puppet/type/file/ctime.rb
puppet-7.20.0 lib/puppet/type/file/ctime.rb
puppet-7.20.0-x86-mingw32 lib/puppet/type/file/ctime.rb
puppet-7.20.0-x64-mingw32 lib/puppet/type/file/ctime.rb
puppet-7.20.0-universal-darwin lib/puppet/type/file/ctime.rb