From 11a978b1daf0c89cb4f5d5167f487b0b070a4fc7 Mon Sep 17 00:00:00 2001 From: A Holt Date: Sat, 5 Aug 2023 12:00:20 -0400 Subject: [PATCH] scripts/ansible: Install cryptography 40.0.1 on ALL 32-bit arch's --- scripts/ansible | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/scripts/ansible b/scripts/ansible index be37b2556..0e61dc7f2 100755 --- a/scripts/ansible +++ b/scripts/ansible @@ -212,7 +212,8 @@ python3 -m venv /usr/local/ansible # # 2023-03-24 #3547 similar to #3459 re: cryptography, piwheels, rust. # Release problems chart: https://www.piwheels.org/project/cryptography/ -if [[ $(dpkg --print-architecture) == armhf ]]; then # 32-bit ARM +#if [[ $(dpkg --print-architecture) == armhf ]]; then # 32-bit ARM +if ! dpkg --print-architecture | grep -q 64; then # 32-bit in general! /usr/local/ansible/bin/python3 -m pip install cryptography==40.0.1 fi