This commit is contained in:
2023-11-16 09:12:47 -06:00
parent 28721b85bd
commit 69bb398c9c
2 changed files with 5 additions and 5 deletions

View File

@@ -2,7 +2,7 @@
action="$1"
FOLDER='/opt/idssys/linupx'
VERS='6.60.18-11142023'
VERS='6.60.19-11162023'
IPERFVER="3.15"

View File

@@ -599,19 +599,19 @@ TAILSCALE_INSTALL() {
curl -fsSL https://tailscale.com/install.sh | sh
echo
read -n 1 -p "Tailscale is now installed, would you like to connect to https://headscale.scity.us? (Y/n) " choice
read -n 1 -p "Tailscale is now installed, would you like to connect to https://headscale.scity.us? (Y/n): " choice
case "$choice" in
[Nn])
read -n 1 -p "Would you like connect to Tailscale directly instead? (Y/n) " choice
read -n 1 -p "Would you like connect to Tailscale directly instead? (Y/n): " choice
case "$choice" in
[Nn]) temp='';;
* )
tailscale up --accept-dns=false --accept-routes=false --accept-dns=false
tailscale up --accept-dns=false --accept-routes=false
;;
esac
;;
* )
tailscale up --accept-dns=false --accept-routes=false --accept-dns=false --login-server=https://headscale.scity.us
tailscale up --accept-dns=false --accept-routes=false --login-server=https://headscale.scity.us
;;
esac
echo