From 05a098580e8e742a1b96a309f907d09c443bdb5d Mon Sep 17 00:00:00 2001 From: Christoph Date: Mon, 15 Dec 2025 18:24:19 +0100 Subject: [PATCH] Fis error in determin if systemd support is present in case of debian 13 and newer. --- set_remote_munin_server_ip.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/set_remote_munin_server_ip.sh b/set_remote_munin_server_ip.sh index 801f3af..f2e8731 100755 --- a/set_remote_munin_server_ip.sh +++ b/set_remote_munin_server_ip.sh @@ -282,7 +282,7 @@ systemd_supported=false systemd=$(which systemd) systemctl=$(which systemctl) -if [[ -n "$systemd" ]] && [[ -n "$systemctl" ]] ; then +if [[ -n "$systemd" ]] || [[ -n "$systemctl" ]] ; then systemd_supported=true fi