Sha256: 2e6eaa51b78103e71e9d4f40223d714b46f3d16c06eaf44ae7bbfc56bc35ca7f

Contents?: true

Size: 493 Bytes

Versions: 12

Compression:

Stored size: 493 Bytes

Contents

# frozen_string_literal: true

module Puppet
  Puppet::Type.type(:file).newproperty(:mtime) do
    desc %q{A read-only state to check the file mtime. On \*nix-like systems, this
      is the time of the most recent change to the content of the file.}

    def retrieve
      current_value = :absent
      stat = @resource.stat
      if stat
        current_value = stat.mtime
      end
      current_value.to_s
    end

    validate do |_val|
      fail "mtime is read-only"
    end
  end
end

Version data entries

12 entries across 12 versions & 1 rubygems

Version Path
puppet-8.5.1 lib/puppet/type/file/mtime.rb
puppet-8.5.1-x86-mingw32 lib/puppet/type/file/mtime.rb
puppet-8.5.1-x64-mingw32 lib/puppet/type/file/mtime.rb
puppet-8.5.1-universal-darwin lib/puppet/type/file/mtime.rb
puppet-8.5.0 lib/puppet/type/file/mtime.rb
puppet-8.5.0-x86-mingw32 lib/puppet/type/file/mtime.rb
puppet-8.5.0-x64-mingw32 lib/puppet/type/file/mtime.rb
puppet-8.5.0-universal-darwin lib/puppet/type/file/mtime.rb
puppet-8.4.0 lib/puppet/type/file/mtime.rb
puppet-8.4.0-x86-mingw32 lib/puppet/type/file/mtime.rb
puppet-8.4.0-x64-mingw32 lib/puppet/type/file/mtime.rb
puppet-8.4.0-universal-darwin lib/puppet/type/file/mtime.rb