Compare commits

...

2 commits

Author SHA1 Message Date
Wayne King
96b5ac6fd4
Merge 3422e73270 into e7b42bd91d 2026-03-16 00:45:29 +00:00
am-periphery
e7b42bd91d
Fix conditional check in uninstall.sh using assignment instead of comparison (#1872) 2026-03-14 13:55:45 +01:00

View file

@ -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"