From ed4bb9f7d0e28f8b6994ebe87aa0ae7f0dd8cfd2 Mon Sep 17 00:00:00 2001 From: Varun Arbatti Date: Mon, 10 Jun 2019 16:30:07 +0200 Subject: [PATCH 1/6] DCD-000: Verify if presence of requirements prevent ansivle bootstrap --- requirements.txt | 3 --- 1 file changed, 3 deletions(-) delete mode 100644 requirements.txt diff --git a/requirements.txt b/requirements.txt deleted file mode 100644 index 9572a3d..0000000 --- a/requirements.txt +++ /dev/null @@ -1,3 +0,0 @@ -ansible==2.7.10 -molecule==2.20.1 -docker==4.0.1 \ No newline at end of file From 0a1588e59df5caaa1412d3afa54fea0dfe34d6c0 Mon Sep 17 00:00:00 2001 From: Varun Arbatti Date: Mon, 10 Jun 2019 17:52:20 +0200 Subject: [PATCH 2/6] Revert "DCD-000: Verify if presence of requirements prevent ansivle bootstrap" This reverts commit ed4bb9f7d0e28f8b6994ebe87aa0ae7f0dd8cfd2. --- requirements.txt | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 requirements.txt diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..9572a3d --- /dev/null +++ b/requirements.txt @@ -0,0 +1,3 @@ +ansible==2.7.10 +molecule==2.20.1 +docker==4.0.1 \ No newline at end of file From 8cc8c6b16003e8754e66749c8f67bdfb519e0adb Mon Sep 17 00:00:00 2001 From: Varun Arbatti Date: Mon, 10 Jun 2019 17:53:44 +0200 Subject: [PATCH 3/6] DCD-000: Updates setuptools before installing ansible --- bin/install-ansible | 2 ++ 1 file changed, 2 insertions(+) diff --git a/bin/install-ansible b/bin/install-ansible index 096dd6a..f7e4684 100755 --- a/bin/install-ansible +++ b/bin/install-ansible @@ -7,4 +7,6 @@ set -e virtualenv --system-site-packages .venv source .venv/bin/activate +pip install -U setuptools pip install ansible==2.7.10 +pip list From 93ea0b41a709af0cc6289afc2e53fad1a31336c0 Mon Sep 17 00:00:00 2001 From: Varun Arbatti Date: Mon, 10 Jun 2019 17:57:45 +0200 Subject: [PATCH 4/6] DCD-000: Updates cryptography before ansible install --- bin/install-ansible | 1 + 1 file changed, 1 insertion(+) diff --git a/bin/install-ansible b/bin/install-ansible index f7e4684..e9a23a4 100755 --- a/bin/install-ansible +++ b/bin/install-ansible @@ -8,5 +8,6 @@ set -e virtualenv --system-site-packages .venv source .venv/bin/activate pip install -U setuptools +pip install cryptography==2.7 pip install ansible==2.7.10 pip list From ce75792ce788904af13089ed8cddc7641d55dac5 Mon Sep 17 00:00:00 2001 From: Varun Arbatti Date: Mon, 10 Jun 2019 18:17:01 +0200 Subject: [PATCH 5/6] DCD-000: unpins cryptography before ansible install --- bin/install-ansible | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/bin/install-ansible b/bin/install-ansible index e9a23a4..6e28895 100755 --- a/bin/install-ansible +++ b/bin/install-ansible @@ -8,6 +8,5 @@ set -e virtualenv --system-site-packages .venv source .venv/bin/activate pip install -U setuptools -pip install cryptography==2.7 pip install ansible==2.7.10 -pip list +pip list --format legacy From 6ba93d181d5e99bedbeba4767507644a2e72b961 Mon Sep 17 00:00:00 2001 From: Varun Arbatti Date: Mon, 10 Jun 2019 18:37:39 +0200 Subject: [PATCH 6/6] DCD-427: pip list with columns display --- bin/install-ansible | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/install-ansible b/bin/install-ansible index 6e28895..b1d60a2 100755 --- a/bin/install-ansible +++ b/bin/install-ansible @@ -9,4 +9,4 @@ virtualenv --system-site-packages .venv source .venv/bin/activate pip install -U setuptools pip install ansible==2.7.10 -pip list --format legacy +pip list --format columns