Sha256: 037e268b9d9d9c5733e77792e9c5e38519026afdde5c66c5d78a90951706553c

Contents?: true

Size: 494 Bytes

Versions: 493

Compression:

Stored size: 494 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
      if stat = @resource.stat
        current_value = stat.ctime
      end
      current_value
    end

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

Version data entries

493 entries across 493 versions & 3 rubygems

Version Path
puppet-6.4.0-x64-mingw32 lib/puppet/type/file/ctime.rb
puppet-6.4.0-universal-darwin lib/puppet/type/file/ctime.rb
puppet-6.0.7 lib/puppet/type/file/ctime.rb
puppet-6.0.7-x86-mingw32 lib/puppet/type/file/ctime.rb
puppet-6.0.7-x64-mingw32 lib/puppet/type/file/ctime.rb
puppet-6.0.7-universal-darwin lib/puppet/type/file/ctime.rb
puppet-5.5.12 lib/puppet/type/file/ctime.rb
puppet-5.5.12-x86-mingw32 lib/puppet/type/file/ctime.rb
puppet-5.5.12-x64-mingw32 lib/puppet/type/file/ctime.rb
puppet-5.5.12-universal-darwin lib/puppet/type/file/ctime.rb
puppet-6.3.0 lib/puppet/type/file/ctime.rb
puppet-6.3.0-x86-mingw32 lib/puppet/type/file/ctime.rb
puppet-6.3.0-x64-mingw32 lib/puppet/type/file/ctime.rb
puppet-6.3.0-universal-darwin lib/puppet/type/file/ctime.rb
puppet-6.2.0 lib/puppet/type/file/ctime.rb
puppet-6.2.0-x86-mingw32 lib/puppet/type/file/ctime.rb
puppet-6.2.0-x64-mingw32 lib/puppet/type/file/ctime.rb
puppet-6.2.0-universal-darwin lib/puppet/type/file/ctime.rb
puppet-6.0.5 lib/puppet/type/file/ctime.rb
puppet-6.0.5-x86-mingw32 lib/puppet/type/file/ctime.rb