Fis error in determin if systemd support is present in case of debian 13 and newer.

This commit is contained in:
2025-12-15 18:38:49 +01:00
parent c72972b0ec
commit 0719872b94

View File

@@ -1610,10 +1610,10 @@ done
# -Is systemd supported on this system?
# -
systemd_supported=false
systemd=$(which systemd)
systemctl=$(which systemctl)
systemd=\$(which systemd)
systemctl=\$(which systemctl)
if [[ -n "$systemd" ]] || [[ -n "$systemctl" ]] ; then
if [[ -n "\$systemd" ]] || [[ -n "\$systemctl" ]] ; then
systemd_supported=true
fi