Add wrapper for installing Ansible

This commit is contained in:
Steve Smith
2019-04-17 16:15:36 +10:00
parent 384b1e2eb9
commit d4e8f3dcd6

10
bin/install-ansible Executable file
View File

@@ -0,0 +1,10 @@
#!/usr/bin/bash
set -e
# The Amazon Linux 2 Ansible package is 2.4, which has issue
# interacting with RDS, so use the PIP version.
virtualenv --system-site-packages .venv
source .venv/bin/activate
pip install ansible==2.7.10