diff --git a/Ansible/bootstrap.sh b/Ansible/bootstrap.sh new file mode 100644 index 0000000000000000000000000000000000000000..127e5df40f1a5591448ece0103cf5d42bdd13344 --- /dev/null +++ b/Ansible/bootstrap.sh @@ -0,0 +1,11 @@ +#!/usr/bin/env bash + +[[ ! -d .venv ]] && python3 -m venv .venv +source .venv/bin/activate + +pip3 install ansible ansible-lint + +ansible-galaxy install --force -r requirements.galaxy.yaml + +# to stay in our comfy virtualenv +exec "${SHELL:bash}"