Bug#1009643: Acknowledgement (Puppet: Fails to work with Ruby 3.0)

2022-05-27 Thread Mike Jonkmans
On Wed, 13 Apr 2022 17:31:59 +0200 Sven Mueller wrote: > Just a quick update: > > The problem of this particular one is: > > in puppet/file_system.rb > > def self.symlink(path, dest, options = {}) > @impl.symlink(assert_path(path), dest, options) > end > > Changing this to: > >

Bug#1009643: Acknowledgement (Puppet: Fails to work with Ruby 3.0)

2022-04-13 Thread Sven Mueller
Just a quick update: The problem of this particular one is: in puppet/file_system.rb def self.symlink(path, dest, options = {}) @impl.symlink(assert_path(path), dest, options) end Changing this to: def self.symlink(path, dest, **options) @impl.symlink(assert_path(path), dest,