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-5.5.22 lib/puppet/type/file/ctime.rb
puppet-5.5.22-x86-mingw32 lib/puppet/type/file/ctime.rb
puppet-5.5.22-x64-mingw32 lib/puppet/type/file/ctime.rb
puppet-5.5.22-universal-darwin lib/puppet/type/file/ctime.rb
puppet-5.5.21 lib/puppet/type/file/ctime.rb
puppet-5.5.21-x86-mingw32 lib/puppet/type/file/ctime.rb
puppet-5.5.21-x64-mingw32 lib/puppet/type/file/ctime.rb
puppet-5.5.21-universal-darwin lib/puppet/type/file/ctime.rb
puppet-5.5.20 lib/puppet/type/file/ctime.rb
puppet-5.5.20-x86-mingw32 lib/puppet/type/file/ctime.rb
puppet-5.5.20-x64-mingw32 lib/puppet/type/file/ctime.rb
puppet-5.5.20-universal-darwin lib/puppet/type/file/ctime.rb
puppet-5.5.19 lib/puppet/type/file/ctime.rb
puppet-5.5.19-x86-mingw32 lib/puppet/type/file/ctime.rb
puppet-5.5.19-x64-mingw32 lib/puppet/type/file/ctime.rb
puppet-5.5.19-universal-darwin lib/puppet/type/file/ctime.rb
puppet-5.5.18 lib/puppet/type/file/ctime.rb
puppet-5.5.18-x86-mingw32 lib/puppet/type/file/ctime.rb
puppet-6.4.5 lib/puppet/type/file/ctime.rb
puppet-5.5.18-x64-mingw32 lib/puppet/type/file/ctime.rb