Sha256: a4ffaaa1a24826f767414c98780f8311d8f162c08093318c31b8411fe9ab0f49

Contents?: true

Size: 510 Bytes

Versions: 48

Compression:

Stored size: 510 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.to_s
    end

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

Version data entries

48 entries across 48 versions & 1 rubygems

Version Path
puppet-7.34.0 lib/puppet/type/file/ctime.rb
puppet-7.34.0-x86-mingw32 lib/puppet/type/file/ctime.rb
puppet-7.34.0-x64-mingw32 lib/puppet/type/file/ctime.rb
puppet-7.34.0-universal-darwin lib/puppet/type/file/ctime.rb
puppet-7.33.0 lib/puppet/type/file/ctime.rb
puppet-7.33.0-x86-mingw32 lib/puppet/type/file/ctime.rb
puppet-7.33.0-x64-mingw32 lib/puppet/type/file/ctime.rb
puppet-7.33.0-universal-darwin lib/puppet/type/file/ctime.rb
puppet-7.32.1 lib/puppet/type/file/ctime.rb
puppet-7.32.1-x86-mingw32 lib/puppet/type/file/ctime.rb
puppet-7.32.1-x64-mingw32 lib/puppet/type/file/ctime.rb
puppet-7.32.1-universal-darwin lib/puppet/type/file/ctime.rb
puppet-7.31.0 lib/puppet/type/file/ctime.rb
puppet-7.31.0-x86-mingw32 lib/puppet/type/file/ctime.rb
puppet-7.31.0-x64-mingw32 lib/puppet/type/file/ctime.rb
puppet-7.31.0-universal-darwin lib/puppet/type/file/ctime.rb
puppet-7.30.0 lib/puppet/type/file/ctime.rb
puppet-7.30.0-x86-mingw32 lib/puppet/type/file/ctime.rb
puppet-7.30.0-x64-mingw32 lib/puppet/type/file/ctime.rb
puppet-7.30.0-universal-darwin lib/puppet/type/file/ctime.rb