From 60b417c9e360fc176b17a8c7ff8247f03e4c7ada Mon Sep 17 00:00:00 2001 From: James Robertson Date: Wed, 29 Nov 2017 12:39:28 -0600 Subject: [PATCH 1/3] Ansible 2.4.1 Ansible 2.4.1 --- playbooks/install.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/playbooks/install.py b/playbooks/install.py index 03bfb8ed..78306f17 100755 --- a/playbooks/install.py +++ b/playbooks/install.py @@ -58,10 +58,8 @@ def install_bench(args): 'pip': 'sudo pip install --upgrade pip setuptools', }) - # Restricting ansible version due to following bug in ansible 2.1 - # https://github.com/ansible/ansible-modules-core/issues/3752 success = run_os_command({ - 'pip': "sudo pip install ansible==2.3.1" + 'pip': "sudo pip install ansible==2.4.1" }) if not success: From 1769ee0f1839aa49f65a1a1630566ddc29d42a13 Mon Sep 17 00:00:00 2001 From: James Robertson Date: Thu, 30 Nov 2017 08:35:19 -0600 Subject: [PATCH 2/3] support for debian 9 support for debian 9 --- playbooks/install.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/playbooks/install.py b/playbooks/install.py index 78306f17..22462c92 100755 --- a/playbooks/install.py +++ b/playbooks/install.py @@ -115,7 +115,7 @@ def install_bench(args): shutil.rmtree(tmp_bench_repo) def check_distribution_compatibility(): - supported_dists = {'ubuntu': [14, 15, 16], 'debian': [7, 8], + supported_dists = {'ubuntu': [14, 15, 16], 'debian': [7, 8, 9], 'centos': [7], 'macos': [10.9, 10.10, 10.11, 10.12]} dist_name, dist_version = get_distribution_info() From 48e30a8e7579b258a31fd6bffbb3c88b396f5566 Mon Sep 17 00:00:00 2001 From: Ameya Shenoy Date: Sun, 28 Jan 2018 19:44:32 +0530 Subject: [PATCH 3/3] reverted ansible to 2.3 from 2.4 --- playbooks/install.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/playbooks/install.py b/playbooks/install.py index 22462c92..b65ed1b0 100755 --- a/playbooks/install.py +++ b/playbooks/install.py @@ -59,7 +59,7 @@ def install_bench(args): }) success = run_os_command({ - 'pip': "sudo pip install ansible==2.4.1" + 'pip': "sudo pip install ansible==2.3.1" }) if not success: