i've found this useful for debugging ansible modules and syntax without having to use VMs or test in dev environments.
pip install ansible
#!/bin/bash | |
# This script takes a remote repository and merges it into | |
# the current one as a subdirectory | |
set -e | |
if [ -z "$1" ] | |
then | |
echo "Usage:" |