-
Notifications
You must be signed in to change notification settings - Fork 1
/
ansible.cfg
35 lines (27 loc) · 934 Bytes
/
ansible.cfg
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
[defaults]
# Generic aka default settings
host_key_checking = False
action_plugins = /usr/lib/python2.7/site-packages/napalm_ansible/plugins/action
jinja2_extensions = jinja2.ext.loopcontrols,jinja2.ext.do,jinja2.ext.i18n
gathering = explicit
retry_files_enabled = False
# Custom Paths
collections_paths = ansible-avd:ansible-cvp:../ansible-cvp:../ansible-avd/:~/.ansible/collections:/usr/share/ansible/collections
roles_path = ./roles
# enable the YAML callback plugin.
stdout_callback = yaml
# enable the stdout_callback when running ad-hoc commands.
bin_ansible_callbacks = True
forks = 15
callback_whitelist = profile_roles, profile_tasks, timer
# Inventory
inventory =./inventory.yml
# Warning management
# command_warnings=False
# interpreter_python=auto_silent
# Only for debugging
# enable_task_debugger = True
interpreter_python = $(which python3)
[persistent_connection]
connect_timeout = 120
command_timeout = 120