From 3c30a8391153b1b5618d10ae143e17720d3d175d Mon Sep 17 00:00:00 2001 From: Max McAdam Date: Wed, 12 Jun 2024 07:50:59 -0700 Subject: [PATCH] Issue 4078 - support agent install on newer os's (ubuntu 24.04, RH 9.4) Signed-off-by: Max McAdam --- agent-install/agent-install.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/agent-install/agent-install.sh b/agent-install/agent-install.sh index 4fc0c1335..62b4fb5a2 100755 --- a/agent-install/agent-install.sh +++ b/agent-install/agent-install.sh @@ -19,11 +19,11 @@ VERB_DEBUG=5 # You can add to these lists of supported values by setting/exporting the corresponding _APPEND variable to a string of space-separated words. # This allows you to experiment with platforms or variations that are not yet officially tested/supported. SUPPORTED_DEBIAN_VARIANTS=(ubuntu raspbian debian $SUPPORTED_DEBIAN_VARIANTS_APPEND) # compared to what our detect_distro() sets DISTRO to -SUPPORTED_DEBIAN_VERSION=(bullseye jammy focal bionic buster xenial stretch bookworm $SUPPORTED_DEBIAN_VERSION_APPEND) # compared to what our detect_distro() sets CODENAME to +SUPPORTED_DEBIAN_VERSION=(noble bullseye jammy focal bionic buster xenial stretch bookworm $SUPPORTED_DEBIAN_VERSION_APPEND) # compared to what our detect_distro() sets CODENAME to SUPPORTED_DEBIAN_ARCH=(amd64 arm64 armhf s390x $SUPPORTED_DEBIAN_ARCH_APPEND) # compared to dpkg --print-architecture SUPPORTED_REDHAT_VARIANTS=(rhel redhatenterprise centos fedora $SUPPORTED_REDHAT_VARIANTS_APPEND) # compared to what our detect_distro() sets DISTRO to # Note: version 8 and 9 are added because that is what /etc/os-release returns for DISTRO_VERSION_NUM on centos -SUPPORTED_REDHAT_VERSION=(7.6 7.9 8.1 8.2 8.3 8.4 8.5 8.6 8.7 8.8 9.0 9.1 9.2 9.3 8 9 32 35 36 37 38 $SUPPORTED_REDHAT_VERSION_APPEND) # compared to what our detect_distro() sets DISTRO_VERSION_NUM to. For fedora versions see https://fedoraproject.org/wiki/Releases, +SUPPORTED_REDHAT_VERSION=(7.6 7.9 8.1 8.2 8.3 8.4 8.5 8.6 8.7 8.8 9.0 9.1 9.2 9.3 9.4 8 9 32 35 36 37 38 39 40 $SUPPORTED_REDHAT_VERSION_APPEND) # compared to what our detect_distro() sets DISTRO_VERSION_NUM to. For fedora versions see https://fedoraproject.org/wiki/Releases, SUPPORTED_REDHAT_ARCH=(x86_64 aarch64 ppc64le s390x riscv64 $SUPPORTED_REDHAT_ARCH_APPEND) # compared to uname -m SUPPORTED_EDGE_CLUSTER_ARCH=(amd64 arm64 s390x)