From 1e9a7b5d4cdf73980676f25f9db0c4fb56020d30 Mon Sep 17 00:00:00 2001 From: ms-nateb <114364725+ms-nateb@users.noreply.github.com> Date: Tue, 31 Mar 2026 19:16:43 -0700 Subject: [PATCH 1/2] Update condition for Mariner and Azure Linux installation --- src/artifacts-helper/install.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/artifacts-helper/install.sh b/src/artifacts-helper/install.sh index 2fb3f09..0335e81 100755 --- a/src/artifacts-helper/install.sh +++ b/src/artifacts-helper/install.sh @@ -70,7 +70,7 @@ check_packages() { export DEBIAN_FRONTEND=noninteractive -if [ "${ID}" = "mariner" ]; then +if [ "${ID}" = "mariner" ] || { [ "${ID}" = "azurelinux" ] && [ "${VERSION_ID}" = "3.0" ]; then tdnf install -y wget ca-certificates tdnf clean all else @@ -145,4 +145,4 @@ if [ "${INSTALL_WITH_SUDO}" = "true" ]; then fi rm /tmp/install-provider.sh -exit 0 \ No newline at end of file +exit 0 From b81bd04ef06b7a27da2b828c3f62f2a50f9dfb27 Mon Sep 17 00:00:00 2001 From: ms-nateb <114364725+ms-nateb@users.noreply.github.com> Date: Tue, 31 Mar 2026 19:25:33 -0700 Subject: [PATCH 2/2] Update conditional syntax in install.sh --- src/artifacts-helper/install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/artifacts-helper/install.sh b/src/artifacts-helper/install.sh index 0335e81..f8ed3b7 100755 --- a/src/artifacts-helper/install.sh +++ b/src/artifacts-helper/install.sh @@ -70,7 +70,7 @@ check_packages() { export DEBIAN_FRONTEND=noninteractive -if [ "${ID}" = "mariner" ] || { [ "${ID}" = "azurelinux" ] && [ "${VERSION_ID}" = "3.0" ]; then +if [[ "${ID}" == "mariner" || ( "${ID}" == "azurelinux" && "${VERSION_ID}" == "3.0" ) ]]; then tdnf install -y wget ca-certificates tdnf clean all else