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, **options)
  end

Works.

I suspect the fix to https://bugs.debian.org/1006231 to look very similar,
but there are lots of code locations that use the same "hash as vararg"
mechanism.

Am Mi., 13. Apr. 2022 um 16:33 Uhr schrieb Debian Bug Tracking System <
ow...@bugs.debian.org>:

> Thank you for filing a new Bug report with Debian.
>
> You can follow progress on this Bug here: 1009643:
> https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1009643.
>
> This is an automatically generated reply to let you know your message
> has been received.
>
> Your message is being forwarded to the package maintainers and other
> interested parties for their attention; they will reply in due course.
>
> Your message has been sent to the package maintainer(s):
>  Puppet Package Maintainers <pkg-puppet-de...@lists.alioth.debian.org>
>
> If you wish to submit further information on this problem, please
> send it to 1009...@bugs.debian.org.
>
> Please do not send mail to ow...@bugs.debian.org unless you wish
> to report a problem with the Bug-tracking system.
>
> --
> 1009643: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1009643
> Debian Bug Tracking System
> Contact ow...@bugs.debian.org with problems
>

Reply via email to