commit bbd4c49122a3ae56dd3a2dfd7cc1954f9e11b659
parent 73739cd01442bf67bc08698886b4f44c5d20ba69
Author: Florian Dold <florian@dold.me>
Date: Sun, 23 Feb 2025 22:37:42 +0100
make log output easier to read
Diffstat:
2 files changed, 6 insertions(+), 1 deletion(-)
diff --git a/ansible.cfg b/ansible.cfg
@@ -2,3 +2,8 @@
inventory = inventories/tops
roles_path = roles
remote_user = root
+
+# Use the YAML callback plugin.
+stdout_callback = yaml
+# Use the stdout_callback when running ad-hoc commands.
+bin_ansible_callbacks = True
diff --git a/deploy.sh b/deploy.sh
@@ -8,7 +8,7 @@ then
fi
ansible-playbook \
- --verbose \
+ -vv \
--inventory inventories/tops \
--user root \
playbooks/setup.yml \