1
1
Fork 0
mirror of https://gitlab.archlinux.org/archlinux/infrastructure.git synced 2024-05-13 00:36:04 +02:00
infrastructure/ansible.cfg
Evangelos Foutras b3f940011a
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
2021-07-12 14:45:25 +03:00

18 lines
380 B
INI

[defaults]
inventory = hosts,hcloud_inventory.py
library = library
remote_tmp = $HOME/.ansible/tmp
remote_user = root
nocows = 1
roles_path = roles
vault_password_file = misc/get-vault-pass.sh
retry_files_enabled = False
callback_plugins = plugins/callback
callbacks_enabled = profile_tasks
max_diff_size = 250000
[ssh_connection]
pipelining = True
scp_if_ssh = True
retries = 5