mirror of
https://github.com/iiab/iiab.git
synced 2025-02-14 12:12:12 +00:00
apt instead of pip IFF "i386" AND ansible-core apt installable
This commit is contained in:
parent
7191d52a5d
commit
1986126701
1 changed files with 1 additions and 1 deletions
|
@ -211,7 +211,7 @@ $APT_PATH/apt -y install python3-venv
|
|||
#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
|
||||
# 2023-09-10 PR #3632: Revert above #3634 and #3637 trying /etc/pip.conf w/ cryptography 41.0.3
|
||||
if [[ $(dpkg --print-architecture) == i386 ]]; then
|
||||
if [[ $(dpkg --print-architecture) == "i386" ]] && apt-cache show ansible-core > /dev/null; then
|
||||
# 2023-08-10: Quick+Dirty (BRUTE FORCE) on legacy 32-bit i386 avoids #3547
|
||||
# rust/wheels/cryptography compiling mess! DEBIAN 12+ OR SIMILAR REQUIRED!
|
||||
$APT_PATH/apt -y install ansible-core # Bookworm ~= ansible-core 2.14.3
|
||||
|
|
Loading…
Reference in a new issue