commit 183165ef39f548ee6b52b7afe26451a9b8592643
parent df5c0719c52bcc7387ec937be3a635a7a26c5c92
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 \