mirror of
https://github.com/zulip/zulip.git
synced 2025-11-05 14:35:27 +00:00
zulip-puppet-apply: Work around broken Puppet on Ubuntu 22.04.
Signed-off-by: Anders Kaseorg <anders@zulip.com>
(cherry picked from commit 25c87cc7da)
This commit is contained in:
committed by
Tim Abbott
parent
e124464fea
commit
3bc1ad05f7
7
scripts/lib/ruby3hack.rb
Normal file
7
scripts/lib/ruby3hack.rb
Normal file
@@ -0,0 +1,7 @@
|
||||
# Work around https://bugs.launchpad.net/ubuntu/+source/puppet/+bug/1969939.
|
||||
|
||||
require 'fileutils'
|
||||
|
||||
def FileUtils.symlink(src, dest, options = {}, **kwargs)
|
||||
FileUtils.ln_s(src, dest, **options, **kwargs)
|
||||
end
|
||||
Reference in New Issue
Block a user