scripts/installer.sh: check Photon OS version with pkg server.

Photon OS support crossed streams with using pkgserve to check
for supported versions 6f9aed1656.
Make Photon OS also rely on pkgserve.

Updates https://github.com/tailscale/tailscale/issues/7651
Updates https://github.com/tailscale/corp/issues/8952

Signed-off-by: Denton Gentry <dgentry@tailscale.com>
pull/7704/head
Denton Gentry 1 year ago committed by Denton Gentry
parent 5ba57e4661
commit ed10a1769b

@ -316,7 +316,7 @@ main() {
# versions we support?
OS_UNSUPPORTED=
case "$OS" in
ubuntu|debian|raspbian|centos|oracle|rhel|amazon-linux|opensuse)
ubuntu|debian|raspbian|centos|oracle|rhel|amazon-linux|opensuse|photon)
# Check with the package server whether a given version is supported.
URL="https://pkgs.tailscale.com/$TRACK/$OS/$VERSION/installer-supported"
$CURL "$URL" 2> /dev/null | grep -q OK || OS_UNSUPPORTED=1
@ -350,13 +350,6 @@ main() {
openbsd)
OS_UNSUPPORTED=1
;;
photon)
if [ "$VERSION" != "3" ] && \
[ "$VERSION" != "4" ]
then
OS_UNSUPPORTED=1
fi
;;
macos)
# We delegate macOS installation to the app store, it will
# perform version checks for us.

Loading…
Cancel
Save