deployment templates for lichen
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

ansible.cfg: use default callback with result_format=yaml

community.general.yaml callback was removed in community.general 12.0.0.
ansible-core 2.13+ supports the same output via callback_result_format=yaml
on the built-in default callback.

+2 -1
+2 -1
ansible/ansible.cfg
··· 1 1 [defaults] 2 2 host_key_checking = False 3 - stdout_callback = yaml 3 + stdout_callback = default 4 + callback_result_format = yaml 4 5 inventory = inventory.yml 5 6 roles_path = roles 6 7