1
1
Fork 0
mirror of https://gitlab.archlinux.org/archlinux/infrastructure.git synced 2024-04-19 21:43:49 +02:00

ansible.cfg: Use new callbacks_enabled key name

As per the following deprecation warning (even though it has a typo):

[DEPRECATION WARNING]: [defaults]callback_whitelist option, normalizing
names to new standard, use callback_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.

[1] https://github.com/ansible/ansible/pull/74845
This commit is contained in:
Evangelos Foutras 2021-07-12 14:45:25 +03:00
parent 0a460f6ae4
commit b3f940011a
No known key found for this signature in database
GPG Key ID: 51E8B148A9999C34

View File

@ -8,7 +8,7 @@ roles_path = roles
vault_password_file = misc/get-vault-pass.sh
retry_files_enabled = False
callback_plugins = plugins/callback
callback_whitelist = profile_tasks
callbacks_enabled = profile_tasks
max_diff_size = 250000
[ssh_connection]