make: Only report changes in playbook run

This commit is contained in:
2020-04-01 10:35:38 +02:00
parent 0df32f9209
commit 137fc9eb24

View File

@@ -3,7 +3,7 @@ requirements = requirements.txt
activate = . $(venv)/bin/activate
pip = pip
ansible = venv/bin/ansible-playbook
ansible_run = $(activate) && ansible-playbook --inventory localhost, --diff --verbose ./playbook.yml
ansible_run = $(activate) && env ANSIBLE_STDOUT_CALLBACK=actionable ansible-playbook --inventory localhost, --diff --verbose ./playbook.yml
.PHONY: all
all: $(ansible)