From 9de140addf45d33cf13ec1de4f82ecd0a63700e9 Mon Sep 17 00:00:00 2001 From: Pavel Raiskup Date: Wed, 23 Nov 2022 10:15:49 +0100 Subject: [PATCH] copr-be: fix Ansible deprecation warning [DEPRECATION WARNING]: [defaults]callback_whitelist option, normalizing names to new standard, use callbacks_enabled instead. This feature will be removed from ansible-core in version 2.15. Deprecation warnings can be disabled by setting deprecation_warnings=False in ansible.cfg. --- roles/copr/backend/files/ansible.cfg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/roles/copr/backend/files/ansible.cfg b/roles/copr/backend/files/ansible.cfg index 2523a2a080..81bbba8929 100644 --- a/roles/copr/backend/files/ansible.cfg +++ b/roles/copr/backend/files/ansible.cfg @@ -1,3 +1,3 @@ [defaults] ansible_python_interpreter = /usr/bin/python3 -callback_whitelist = profile_tasks +callbacks_enabled = profile_tasks