From d1ce484732016ccd5cd139ff1bd016b094bb8eef Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Adri=C3=A1n=20Robotka?= <robotka.adrian@gmail.com>
Date: Wed, 16 Jun 2021 19:51:27 +0200
Subject: [PATCH] add force to ansible reqs

---
 playbook-template/bootstrap.sh | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/playbook-template/bootstrap.sh b/playbook-template/bootstrap.sh
index d3c71ce..dd45528 100755
--- a/playbook-template/bootstrap.sh
+++ b/playbook-template/bootstrap.sh
@@ -11,7 +11,7 @@ pip3 install ansible ansible-lint
 
 ########################### Ansible setup ####################################
 
-ansible-galaxy install -r requirements.galaxy.yml
+ansible-galaxy install --force -r requirements.galaxy.yml
 
 ########################### Help ####################################
 
@@ -27,7 +27,7 @@ echo "Recommendation: Set up your OpenSSH config based on inventory.yml"
 
 echo
 echo "You can run playbook with:"
-printf "\tansible-playbook -i inventory.yaml your-playbook.yaml"
+printf "\tansible-playbook your-playbook.yaml"
 echo
 
 # to stay in our comfy virtualenv
-- 
GitLab