14 lines
469 B
Bash
14 lines
469 B
Bash
#! bin/bash
|
||
|
||
echo "Tailscale Easy Installer"
|
||
echo ""
|
||
|
||
echo "Tailscale’s 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 |