From 6c648cbd9bd40d3eccec6fc775d39266864374bc Mon Sep 17 00:00:00 2001 From: root Date: Thu, 10 Aug 2023 03:54:18 -0400 Subject: [PATCH] Clarify 'apt install python3-cryptography' for i386 Ansible --- scripts/ansible | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/scripts/ansible b/scripts/ansible index ab6aa16bb..fc78d36b6 100755 --- a/scripts/ansible +++ b/scripts/ansible @@ -217,8 +217,9 @@ if ! dpkg --print-architecture | grep -q 64; then # 32-bit in general! if [[ $(dpkg --print-architecture) == armhf ]]; then # 32-bit ARM /usr/local/ansible/bin/python3 -m pip install cryptography==40.0.1 else - # 2023-08-10: Installs cryptography 38.0.4 on Debian 12.1 when - # `dpkg --print-architecture` is i386 e.g. `uname -m` is i686 + # 2023-08-10: 'apt install rustc pkg-config libssl-dev' was not enough! + # So we use apt to install cryptography 38.0.4 for Debian 12.1 -- where + # `dpkg --print-architecture` was i386 and `uname -m` was i686: $APT_PATH/apt -y install python3-cryptography fi fi