From e6572a0f088a93767d9d969180090758f57cf7b2 Mon Sep 17 00:00:00 2001 From: Denton Gentry Date: Tue, 28 Jun 2022 07:54:14 -0700 Subject: [PATCH] install.sh: Add archarm and Raspbian Stretch Fixes https://github.com/tailscale/tailscale/issues/4959 Fixes https://github.com/tailscale/tailscale/issues/4897 Signed-off-by: Denton Gentry --- scripts/installer.sh | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/scripts/installer.sh b/scripts/installer.sh index 0dbe78175..f21ac8649 100755 --- a/scripts/installer.sh +++ b/scripts/installer.sh @@ -191,7 +191,7 @@ main() { VERSION="tumbleweed" PACKAGETYPE="zypper" ;; - arch) + arch|archarm) OS="$ID" VERSION="" # rolling release PACKAGETYPE="pacman" @@ -292,7 +292,8 @@ main() { fi ;; raspbian) - if [ "$VERSION" != "buster" ] && \ + if [ "$VERSION" != "stretch" ] && \ + [ "$VERSION" != "buster" ] && \ [ "$VERSION" != "bullseye" ] then OS_UNSUPPORTED=1