From ee20455bd7edc6278190e4df8acb352fb04e5fbe Mon Sep 17 00:00:00 2001 From: A Holt Date: Sun, 10 Sep 2023 09:20:54 -0400 Subject: [PATCH] scripts/ansible: Clarify PR #3637 test for apt pkg ansible-core --- scripts/ansible | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/ansible b/scripts/ansible index 2bb8168b9..fa5b704cf 100755 --- a/scripts/ansible +++ b/scripts/ansible @@ -206,8 +206,8 @@ $APT_PATH/apt -y install python3-venv # to force boot its 32-bit kernel; its 64-bit kernel should work too!) # IN SHORT: This ugly hack appears sufficient for all "32-bit" Bookworm+ OS's # (similar to 32-bit Debian 12 on AMD/Intel a month ago, i.e. PR #3617). -# 2023-09-10: Even safer test than querying for Debian 12+ -- verify that apt -# package ansible-core is truly available: +# 2023-09-10 PR #3637: Even safer test than querying for Debian 12+ -- verify +# that apt package ansible-core is truly available: if ! dpkg --print-architecture | grep -q 64 && apt-cache show ansible-core > /dev/null; then #if ! dpkg --print-architecture | grep -q 64 && ! grep -q ^11 /etc/debian_version; then #if [[ $(dpkg --print-architecture) == i386 ]]; then