diff --git a/Makefile b/Makefile index 03f012e..419ce3a 100644 --- a/Makefile +++ b/Makefile @@ -8,10 +8,18 @@ galaxy: role collection role: ansible-galaxy role install -r ./roles/requirements.yml +.PHONY: roleforce +roleforce: + ansible-galaxy role install -r ./roles/requirements.yml --force + .PHONY: collection collection: ansible-galaxy collection install -r ./collections/requirements.yml +.PHONY: collectionforce +collectionforce: + ansible-galaxy collection install -r ./collections/requirements.yml --force + .PHONY: ping ping: ansible -m ping all @@ -28,3 +36,7 @@ reboot: playbook: ansible-playbook test.yml +.PHONY: checkdiff +checkdiff: + ansible-playbook test.yml --check --diff +