From 47c36b6f6bede759e47879a4e67638d4ca9800a4 Mon Sep 17 00:00:00 2001 From: Semaphore Date: Sat, 14 Mar 2026 15:32:03 -0700 Subject: [PATCH] fix: replace deprecated community.general.yaml callback with ansible.builtin.default --- ansible.cfg | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/ansible.cfg b/ansible.cfg index f24117b..87d1b05 100644 --- a/ansible.cfg +++ b/ansible.cfg @@ -2,7 +2,8 @@ inventory = inventories/ roles_path = roles/ callback_plugins = callback_plugins/ -stdout_callback = yaml +stdout_callback = ansible.builtin.default +result_format = yaml callbacks_enabled = n8n_reporter retry_files_enabled = False host_key_checking = True @@ -12,16 +13,14 @@ gathering = smart fact_caching = jsonfile fact_caching_connection = /tmp/ansible_facts_cache fact_caching_timeout = 3600 - [privilege_escalation] become = True become_method = sudo become_ask_pass = False - [ssh_connection] ssh_args = -o ControlMaster=auto -o ControlPersist=60s -o StrictHostKeyChecking=yes pipelining = True - [persistent_connection] connect_timeout = 30 command_timeout = 30 +