From 6493338c4c82c1fd1170c0080ebe743d2907251c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Torjus=20H=C3=A5kestad?= Date: Mon, 9 Feb 2026 21:47:16 +0100 Subject: [PATCH] ansible: fix deprecated yaml callback plugin Use result_format=yaml with builtin default callback instead of the removed community.general.yaml plugin. Co-Authored-By: Claude Opus 4.5 --- ansible/ansible.cfg | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/ansible/ansible.cfg b/ansible/ansible.cfg index 686ad13..4f40a69 100644 --- a/ansible/ansible.cfg +++ b/ansible/ansible.cfg @@ -7,9 +7,10 @@ host_key_checking = False forks = 10 pipelining = True -# Output formatting -stdout_callback = yaml +# Output formatting (YAML output via builtin default callback) +stdout_callback = default callbacks_enabled = profile_tasks +result_format = yaml [ssh_connection] # Reuse SSH connections