From f3254982e8161f4210edc77d48141b61bf87f7f8 Mon Sep 17 00:00:00 2001 From: Paul Belanger Date: Wed, 27 Feb 2019 12:57:15 -0500 Subject: [PATCH] Add packages for cryptography We actually need them to compile cryptography properly. Change-Id: I8b6c12684300b1b343579db0ac3164fb0f7608d9 Signed-off-by: Paul Belanger --- vars/Debian.yaml | 3 +++ vars/RedHat.yaml | 3 +++ 2 files changed, 6 insertions(+) diff --git a/vars/Debian.yaml b/vars/Debian.yaml index 1dbd834..d043c97 100644 --- a/vars/Debian.yaml +++ b/vars/Debian.yaml @@ -13,4 +13,7 @@ # under the License. --- __ansible_build_depends: + - gcc + - libffi-dev - libssl-dev + - python3-dev diff --git a/vars/RedHat.yaml b/vars/RedHat.yaml index 1f2f5ac..85731e8 100644 --- a/vars/RedHat.yaml +++ b/vars/RedHat.yaml @@ -13,4 +13,7 @@ # under the License. --- __ansible_build_depends: + - gcc-c++ + - libffi-devel - openssl-devel + - python3-devel