From c60806b55771e061f90a809ae9b964f50c88e687 Mon Sep 17 00:00:00 2001 From: David Anderson Date: Wed, 20 Oct 2021 18:58:02 -0700 Subject: [PATCH] scripts/installer.sh: use .asc suffix for armored debian gpg key URL. Fixes #2512 Signed-off-by: David Anderson --- scripts/installer.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/installer.sh b/scripts/installer.sh index 5208bd6bf..2e8335d87 100755 --- a/scripts/installer.sh +++ b/scripts/installer.sh @@ -373,7 +373,7 @@ main() { $SUDO mkdir -p --mode=0755 /usr/share/keyrings case "$APT_KEY_TYPE" in legacy) - $CURL "https://pkgs.tailscale.com/stable/$OS/$VERSION.gpg" | $SUDO apt-key add - + $CURL "https://pkgs.tailscale.com/stable/$OS/$VERSION.asc" | $SUDO apt-key add - $CURL "https://pkgs.tailscale.com/stable/$OS/$VERSION.list" | $SUDO tee /etc/apt/sources.list.d/tailscale.list ;; keyring)