From e25c7d7cae921e7ea2df47503e9e93e92808db15 Mon Sep 17 00:00:00 2001 From: yohan <783b8c87@scimetis.net> Date: Sat, 13 Apr 2024 13:31:12 +0200 Subject: [PATCH] Fix callback configuration directive for Ansible 2.10. --- ansible.cfg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ansible.cfg b/ansible.cfg index 020e6bf..da03e95 100644 --- a/ansible.cfg +++ b/ansible.cfg @@ -1,4 +1,4 @@ [defaults] inventory = inventory.yml host_key_checking = accept-new -callbacks_enabled=ansible.posix.profile_tasks, ansible.posix.timer +callback_whitelist=ansible.posix.profile_tasks, ansible.posix.timer