From 907e43b9d534077564740cb3d3cf091cd4488c54 Mon Sep 17 00:00:00 2001
From: Justin Downing <justin@downing.us>
Date: Wed, 29 Mar 2017 21:40:34 -0400
Subject: [PATCH] pin ansible to version 2.2.1.0
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

ansible 2.2.2.0 has an [issue]() that causes problems for kargo:

```
(env) kargo ᐅ env/bin/ansible-playbook upgrade-cluster.yml
ERROR! Unexpected Exception: 'Host' object has no attribute 'remove_group'
```

Pinning ansible to 2.2.1.0 resolved this for me.
---
 requirements.txt | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/requirements.txt b/requirements.txt
index fc964b1a9..ccf58ea3a 100644
--- a/requirements.txt
+++ b/requirements.txt
@@ -1,4 +1,4 @@
-ansible>=2.2.1
+ansible==2.2.1.0
 netaddr
 # Ansible 2.2.1 requires jinja2<2.9, see <https://github.com/ansible/ansible/blob/v2.2.1.0-1/setup.py#L25>,
 # but without explicit limiting upper jinja2 version here pip ignores
-- 
GitLab