Files
bash/Tailscale_Linux/tailscaleinstall.sh
2021-10-24 00:42:33 -04:00

14 lines
469 B
Bash
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
#! bin/bash
echo "Tailscale Easy Installer"
echo ""
echo "Tailscales package signing key and repository"
curl -fsSL https://pkgs.tailscale.com/stable/ubuntu/focal.gpg | sudo apt-key add -
curl -fsSL https://pkgs.tailscale.com/stable/ubuntu/focal.list | sudo tee /etc/apt/sources.list.d/tailscale.list
echo "Updating Repos..."
sudo apt update && echo "Update Complete"
echo "Installing Tailscale"
sudo apt-get install tailscale && echo "Install Completed"push o