diff --git a/ansible/README.md b/ansible/README.md index f2b7189e8bfe48b25418af702dbfe97ced740dc8..e9212f243027280c7bff0d9df539182c3e48e07f 100644 --- a/ansible/README.md +++ b/ansible/README.md @@ -11,4 +11,5 @@ have to specify it when running `bootstrap.sh`: This file can be run everytime to setup your environment. Look into the file, quite simple. +If you want to reload all dependencies, run `./bootstrap.sh --force` diff --git a/ansible/bootstrap.sh b/ansible/bootstrap.sh index 68ea88ed6c14456c1200b98b937251beffcb809d..67f34a583e1368f4e10d7ef8a23194f40e4e9eee 100755 --- a/ansible/bootstrap.sh +++ b/ansible/bootstrap.sh @@ -8,7 +8,7 @@ source .venv/bin/activate pip3 install ansible ansible-lint -ansible-galaxy install --force -r requirements.galaxy.yaml +ansible-galaxy install "$1" -r requirements.galaxy.yaml # to stay in our comfy virtualenv exec "${SHELL:bash}"