Compare commits

..

2 commits

Author SHA1 Message Date
dz
23d09e441d
Merge cbcf7871ec into f676f82ed0 2025-09-21 00:02:01 +10:00
Marco Ochse
f676f82ed0
Fix bug regarding myANSIBLE_TAG in installer.sh
Fixes #1841
2025-09-18 16:59:10 +02:00

View file

@ -206,7 +206,7 @@ if [ ! -f installer/install/tpot.yml ] && [ ! -f tpot.yml ];
fi fi
# Check type of sudo access # 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 # Debian 13 - sudo seems to apply stricter settings, we now ask for the become password
then then
myANSIBLE_BECOME_OPTION="--become --ask-become-pass" myANSIBLE_BECOME_OPTION="--become --ask-become-pass"