Last active
January 17, 2017 22:34
-
-
Save 1davidmichael/1f6d61a7fd8e76169c32d253f6d0d164 to your computer and use it in GitHub Desktop.
Install custom ansible version in a virtualenv
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
mkdir -p ansible_virtualenv | |
cd ansible_virtualenv | |
virtualenv . | |
source ./bin/activate | |
git clone https://github.com/meredith-digops/ansible.git && cd ansible | |
git checkout meredith | |
git submodule update --init --recursive | |
pip install . | |
pip install boto3 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment