Sha256: 0f27677cae8d29b1ecc48dcea6648c5815882d7650033c862db014ab38a82acc

Contents?: true

Size: 779 Bytes

Versions: 164

Compression:

Stored size: 779 Bytes

Contents

require 'puppet/file_system/posix'

class Puppet::FileSystem::JRuby < Puppet::FileSystem::Posix
  def unlink(*paths)
    File.unlink(*paths)
  rescue Errno::ENOENT
    # JRuby raises ENOENT if the path doesn't exist or the parent directory
    # doesn't allow execute/traverse. If it's the former, `stat` will raise
    # ENOENT, if it's the later, it'll raise EACCES
    # See https://github.com/jruby/jruby/issues/5617
    stat(*paths)
  end

  def replace_file(path, mode = nil, &block)
    # MRI Ruby rename checks if destination is a directory and raises, while
    # JRuby removes the directory and replaces the file.
    if Puppet::FileSystem.directory?(path)
      raise Errno::EISDIR, _("Is a directory: %{directory}") % { directory: path }
    end

    super
  end
end

Version data entries

164 entries across 164 versions & 1 rubygems

Version Path
puppet-6.25.1 lib/puppet/file_system/jruby.rb
puppet-6.25.1-x86-mingw32 lib/puppet/file_system/jruby.rb
puppet-6.25.1-x64-mingw32 lib/puppet/file_system/jruby.rb
puppet-6.25.1-universal-darwin lib/puppet/file_system/jruby.rb
puppet-6.25.0 lib/puppet/file_system/jruby.rb
puppet-6.25.0-x86-mingw32 lib/puppet/file_system/jruby.rb
puppet-6.25.0-x64-mingw32 lib/puppet/file_system/jruby.rb
puppet-6.25.0-universal-darwin lib/puppet/file_system/jruby.rb
puppet-6.24.0 lib/puppet/file_system/jruby.rb
puppet-6.24.0-x86-mingw32 lib/puppet/file_system/jruby.rb
puppet-6.24.0-x64-mingw32 lib/puppet/file_system/jruby.rb
puppet-6.24.0-universal-darwin lib/puppet/file_system/jruby.rb
puppet-6.23.0 lib/puppet/file_system/jruby.rb
puppet-6.23.0-x86-mingw32 lib/puppet/file_system/jruby.rb
puppet-6.23.0-x64-mingw32 lib/puppet/file_system/jruby.rb
puppet-6.23.0-universal-darwin lib/puppet/file_system/jruby.rb
puppet-6.22.1 lib/puppet/file_system/jruby.rb
puppet-6.22.1-x86-mingw32 lib/puppet/file_system/jruby.rb
puppet-6.22.1-x64-mingw32 lib/puppet/file_system/jruby.rb
puppet-6.22.1-universal-darwin lib/puppet/file_system/jruby.rb