From 25bda49293cb00f16926efbfd8b16bfaf1e269bf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?M=C4=83rcziem=20=E2=84=A2?= <118485377+spalencsar@users.noreply.github.com> Date: Mon, 6 Oct 2025 11:42:34 +0200 Subject: [PATCH] Disable Fail2ban on openSUSE due to systemd backend compatibility issues --- lib/security.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lib/security.sh b/lib/security.sh index ae18ad5..1470897 100644 --- a/lib/security.sh +++ b/lib/security.sh @@ -31,6 +31,9 @@ install_fail2ban() { ;; opensuse) handle_error sudo zypper install -y fail2ban + # On openSUSE, Fail2ban has issues with systemd backend, skip it for now + log_warning "Fail2ban on openSUSE may have compatibility issues. Consider manual configuration." + return 0 ;; *) log_error "Unsupported Linux distribution: $DISTRO"