Updated ansible.cfg

This commit is contained in:
Nicola Belluti 2023-09-07 11:50:24 +00:00
parent 4c8f3c88a1
commit c6beaf693e

View File

@ -14,6 +14,11 @@ ansible_managed = This file was last modified by {{{{ '{uid}' | replace('-', ' '
# (pathspec) Colon separated paths in which Ansible will search for Roles.
roles_path = ./roles
# (string) Set the main callback used to display Ansible output. You can only have one at a time.
# You can have many other callbacks, but just one can be in charge of stdout.
# See :ref:`callback_plugins` for a list of available options.
stdout_callback = yaml
[connection]
# (boolean) This is a global option, each connection plugin can override either by having more specific options or not supporting pipelining at all.
# Pipelining, if supported by the connection plugin, reduces the number of network operations required to execute a module on the remote server, by executing many Ansible modules without actual file transfer.