diff --git a/base/debian-10/install.sh b/base/debian-10/install.sh index a173a1b9..ad1bce7a 100755 --- a/base/debian-10/install.sh +++ b/base/debian-10/install.sh @@ -61,7 +61,7 @@ cp apt_inst.cpython-37m-${ARCH}-linux-gnu.so apt_inst.so rm -rf /tmp/python3-apt # Install splunk-ansible dependencies cd / -pip -q --no-cache-dir install six wheel requests ansible jmespath --upgrade +pip -q --no-cache-dir install six wheel requests cryptography==3.3.2 ansible jmespath --upgrade # Remove tests packaged in python libs find /usr/lib/ -depth \( -type d -a -not -wholename '*/ansible/plugins/test' -a \( -name test -o -name tests -o -name idle_test \) \) -exec rm -rf '{}' \; find /usr/lib/ -depth \( -type f -a -name '*.pyc' -o -name '*.pyo' -o -name '*.a' \) -exec rm -rf '{}' \; diff --git a/base/debian-9/install.sh b/base/debian-9/install.sh index e7ce0ef6..1bdf3c09 100755 --- a/base/debian-9/install.sh +++ b/base/debian-9/install.sh @@ -58,7 +58,7 @@ cp apt_inst.cpython-35m-x86_64-linux-gnu.so apt_inst.so rm -rf /tmp/python3-apt # Install splunk-ansible dependencies cd / -pip -q --no-cache-dir install six wheel requests ansible jmespath --upgrade +pip -q --no-cache-dir install six wheel requests cryptography==3.3.2 ansible jmespath --upgrade # Remove tests packaged in python libs find /usr/lib/ -depth \( -type d -a -not -wholename '*/ansible/plugins/test' -a \( -name test -o -name tests -o -name idle_test \) \) -exec rm -rf '{}' \; find /usr/lib/ -depth \( -type f -a -name '*.pyc' -o -name '*.pyo' -o -name '*.a' \) -exec rm -rf '{}' \; diff --git a/base/redhat-8/install.sh b/base/redhat-8/install.sh index 26ac555b..f3c66fd9 100755 --- a/base/redhat-8/install.sh +++ b/base/redhat-8/install.sh @@ -45,7 +45,7 @@ ln -sf /usr/bin/python${PY_SHORT} /usr/bin/python ln -sf /usr/bin/pip${PY_SHORT} /usr/bin/pip # Install splunk-ansible dependencies cd / -pip -q --no-cache-dir install six wheel requests ansible jmespath --upgrade +pip -q --no-cache-dir install six wheel requests cryptography==3.3.2 ansible jmespath --upgrade # Remove tests packaged in python libs find /usr/lib/ -depth \( -type d -a -not -wholename '*/ansible/plugins/test' -a \( -name test -o -name tests -o -name idle_test \) \) -exec rm -rf '{}' \; find /usr/lib/ -depth \( -type f -a -name '*.pyc' -o -name '*.pyo' -o -name '*.a' \) -exec rm -rf '{}' \;