Method: Puppet::FileSystem::FileImpl#touch

Defined in:
lib/puppet/file_system/file_impl.rb

#touch(path, mtime: nil) ⇒ Object

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.



117
118
119
# File 'lib/puppet/file_system/file_impl.rb', line 117

def touch(path, mtime: nil)
  ::FileUtils.touch(path, mtime: mtime)
end