From 512e5270e0b5b29ee907688b9c6ed1f64a9427da Mon Sep 17 00:00:00 2001 From: William P Date: Thu, 25 Sep 2025 10:58:03 -0400 Subject: [PATCH] fix issue in dhcp installer --- system-apps/multus/daemonset.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/system-apps/multus/daemonset.yaml b/system-apps/multus/daemonset.yaml index 1514c8b..25a56d7 100644 --- a/system-apps/multus/daemonset.yaml +++ b/system-apps/multus/daemonset.yaml @@ -104,9 +104,9 @@ spec: args: - -c - | - if [ "${HOSTTYPE}" = "x86_64" ] || [ "${HOSTTYPE}" = "amd64" ]; then + if [ "${uname -m}" = "x86_64" ] || [ "${uname -m}" = "amd64" ]; then ARCH="amd64" - elif [ "${HOSTTYPE}" = "arm64" ] || [ "${HOSTTYPE}" = "aarch64" ]; then + elif [ "${uname -m}" = "arm64" ] || [ "${uname -m}" = "aarch64" ]; then ARCH="arm64" else exit 1