From e3d3103dc2784eb8d9bd8fc25dd331d98a6fff11 Mon Sep 17 00:00:00 2001 From: Sergey Antropoff Date: Wed, 1 Jul 2026 11:09:08 +0300 Subject: [PATCH] fix: replace removed yaml callback with default + result_format community.general.yaml was removed in collection 12.0; use ansible.builtin.default with result_format=yaml for Ansible 2.13+. --- ansible.cfg | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ansible.cfg b/ansible.cfg index 579e02f..cc18a4f 100644 --- a/ansible.cfg +++ b/ansible.cfg @@ -3,7 +3,8 @@ inventory = inventory/hosts.yml roles_path = roles host_key_checking = False retry_files_enabled = False -stdout_callback = yaml +stdout_callback = default +result_format = yaml interpreter_python = auto_silent [privilege_escalation]