mirror of
https://bitbucket.org/atlassian/dc-deployments-automation.git
synced 2025-12-13 16:33:08 -06:00
11 lines
225 B
Bash
Executable File
11 lines
225 B
Bash
Executable File
#!/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
|