From e7b42bd91d94f716162c0df95e7c5f702b15777e Mon Sep 17 00:00:00 2001 From: am-periphery <138065765+am-periphery@users.noreply.github.com> Date: Sat, 14 Mar 2026 12:55:45 +0000 Subject: [PATCH] Fix conditional check in uninstall.sh using assignment instead of comparison (#1872) --- uninstall.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/uninstall.sh b/uninstall.sh index 73d2bbdb..2c3ffea2 100755 --- a/uninstall.sh +++ b/uninstall.sh @@ -68,7 +68,7 @@ if [[ "${myANSIBLE_DISTRIBUTIONS[@]}" =~ "${myCURRENT_DISTRIBUTION}" ]]; fi # Check type of sudo access -if myANSIBLE_TAG="Debian"; +if [ "$myANSIBLE_TAG" = "Debian" ]; # Debian 13 - sudo seems to apply stricter settings, we now ask for the become password then myANSIBLE_BECOME_OPTION="--become --ask-become-pass"