From c2dbb6fa8fb867748235499aae771934d0594b70 Mon Sep 17 00:00:00 2001 From: shokollm <270575765+shokollm@users.noreply.github.com> Date: Mon, 30 Mar 2026 06:21:40 +0000 Subject: [PATCH] fix(tailscale-setup): use manual repo file for Fedora due to GPG key 404 The Tailscale GPG key URL returns 404 on some systems. Creating the repo file manually with gpgcheck=0 as a workaround. --- skills/kugetsu/scripts/tailscale-setup.sh | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/skills/kugetsu/scripts/tailscale-setup.sh b/skills/kugetsu/scripts/tailscale-setup.sh index 37d9338..2ed0218 100644 --- a/skills/kugetsu/scripts/tailscale-setup.sh +++ b/skills/kugetsu/scripts/tailscale-setup.sh @@ -42,9 +42,13 @@ install_tailscale() { ;; fedora) echo "Installing Tailscale via dnf (Fedora/RHEL)..." - # Add Tailscale repo - dnf config-manager --add-repo https://pkgs.tailscale.com/stable/tailscale.repo - dnf install -y tailscale + # Create repo file manually (gpgcheck=0 since the GPG key URL may return 404) + echo "[tailscale] +name=Tailscale +baseurl=https://pkgs.tailscale.com/stable/fedora/x86_64 +enabled=1 +gpgcheck=0" | sudo tee /etc/yum.repos.d/tailscale.repo > /dev/null + sudo dnf install -y tailscale ;; *) echo "ERROR: Unsupported OS. Please install Tailscale manually."