Update setup

This commit is contained in:
2026-03-27 13:44:11 -03:00
parent 7ad6529e74
commit ae9e8e2f64

View File

@@ -41,7 +41,16 @@ sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/too
# Setup Tailscale # Setup Tailscale
echo '### Setting up Tailscale ###' echo '### Setting up Tailscale ###'
printf "Do you want to install and setup Tailscale? [Y/n] "
read choice
case "$choice" in
n|N|no|No|NO )
echo "Skipping Tailscale setup."
;;
* )
if ! command -v tailscale > /dev/null 2>&1; then if ! command -v tailscale > /dev/null 2>&1; then
curl -fsSL https://tailscale.com/install.sh | sh curl -fsSL https://tailscale.com/install.sh | sh
sudo tailscale up sudo tailscale up
fi fi
;;
esac