Add tailscale

This commit is contained in:
2024-07-20 20:43:07 +01:00
parent afc4eb1587
commit 4eff2d65b5
2 changed files with 26 additions and 2 deletions

View File

@@ -17,7 +17,8 @@ dialog --erase-on-exit \
"4" "Install GNOME Desktop" "on" \
"5" "Install GitHub CLI" "off"\
"6" "Install Ollama" "off"\
"7" "Install Apps (Enables Flatpak)" "on" 2> choice.tmp
"7" "Install Apps (Enables Flatpak)" "on"\
"8" "Install Tailscale (VPN)" "on" 2> choice.tmp
main_menu=$( cat choice.tmp )
rm choice.tmp
@@ -210,4 +211,15 @@ for selection in $main_menu; do
flatpak install flathub $app
done
fi
if [ "$selection" = "8" ]; then
clear
echo "-------------------------"
echo "--- Install Tailscale ---"
echo "-------------------------"
echo
echo
curl -fsSL https://tailscale.com/install.sh | sh
fi
done