From a64db67fe2f52d261bfa05ff6ace42c086203203 Mon Sep 17 00:00:00 2001 From: TomRicci <44097104+TomRicci@users.noreply.github.com> Date: Mon, 21 Oct 2024 16:23:01 +0200 Subject: [PATCH] fix: lint ACL.pm --- lib/perl/OVH/Bastion/Plugin/ACL.pm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/perl/OVH/Bastion/Plugin/ACL.pm b/lib/perl/OVH/Bastion/Plugin/ACL.pm index 86aa16f..cd9eb48 100644 --- a/lib/perl/OVH/Bastion/Plugin/ACL.pm +++ b/lib/perl/OVH/Bastion/Plugin/ACL.pm @@ -27,7 +27,8 @@ sub check { } if (!grep { $protocol eq $_ } qw{ scpupload scpdownload sftp rsync }) { return R('ERR_INVALID_PARAMETER', - msg => "The protocol '$protocol' is not supported, expected either scpupload, scpdownload, sftp or rsync"); + msg => + "The protocol '$protocol' is not supported, expected either scpupload, scpdownload, sftp or rsync"); } }