Skip to content

Commit

Permalink
Update rpi-setup.sh
Browse files Browse the repository at this point in the history
Fix issues with Tailscale installation section
  • Loading branch information
ctlinux authored Jun 16, 2024
1 parent bfd2205 commit 9c88dc1
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions rpi-setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,10 @@ sleep 2
# Install Tailscale
echo "Installing Tailscale"
sleep 2
curl -fsSL https://pkgs.tailscale.com/stable/raspbian/bullseye.noarmor.gpg | sudo tee /usr/share/keyrings/tailscale-archive-keyring.gpg > /dev/null
curl -fsSL https://pkgs.tailscale.com/stable/raspbian/bullseye.tailscale-keyring.list | sudo tee /etc/apt/sources.list.d/tailscale.list
apt-get install tailscale -y &&
curl -fsSL https://pkgs.tailscale.com/stable/raspbian/bullseye.noarmor.gpg | sudo tee /usr/share/keyrings/tailscale-archive-keyring.gpg > /dev/null && \
curl -fsSL https://pkgs.tailscale.com/stable/raspbian/bullseye.tailscale-keyring.list | sudo tee /etc/apt/sources.list.d/tailscale.list && \
apt-get update -y && \
apt-get install tailscale -y && \
tailscale up
sleep 2

Expand Down

0 comments on commit 9c88dc1

Please sign in to comment.