From 1cae8ea14e65566fd469be84e3f340dac5cb5272 Mon Sep 17 00:00:00 2001 From: tegwick Date: Thu, 18 Jun 2026 01:18:57 +0200 Subject: [PATCH] fix(ansible): use default stdout callback for ansible-core 2.21 Replaces removed community.general.yaml callback so bootstrap-ssh-ca runs cleanly. --- ansible/ansible.cfg | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ansible/ansible.cfg b/ansible/ansible.cfg index 7702e08..ecb1baf 100644 --- a/ansible/ansible.cfg +++ b/ansible/ansible.cfg @@ -4,5 +4,6 @@ roles_path = ./roles host_key_checking = False retry_files_enabled = False interpreter_python = auto -stdout_callback = yaml +stdout_callback = default +result_format = yaml forks = 20