From 7c1c5d27f700f0f58ec03b10dc7b4721b28724e4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hugo=20H=C3=B6rnquist?= <hugo@lysator.liu.se> Date: Mon, 23 Oct 2023 21:48:33 +0200 Subject: [PATCH] Fix map. --- manifests/ident.pp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/manifests/ident.pp b/manifests/ident.pp index a020b83..22b05ea 100644 --- a/manifests/ident.pp +++ b/manifests/ident.pp @@ -39,6 +39,6 @@ class irc_bouncer::ident { 'File /etc/oidentd.conf', 'Format global { reply "%user%" }', '', # Trailing newline - ].map (percent_encode).join("\n"), + ].map |$s| { percent_encode($s) }.join("\n"), } } -- GitLab