forked from Qubinode/qubinode-installer
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathansible.cfg
33 lines (27 loc) · 893 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
[defaults]
inventory = inventory
forks = 50
callback_whitelist = timer, profile_tasks
log_path = ansible.log
roles_path = playbooks/roles
collections_paths = playbooks/collections
retry_files_enabled = False
host_key_checking = False
#host_key_checking = False
# Use the YAML callback plugin.
stdout_callback = yaml
# Use the stdout_callback when running ad-hoc commands.
bin_ansible_callbacks = True
vault_password_file = ~/.vaultkey
library = playbooks/modules
#allow_unsafe_lookups = False
jinja2_native = False
[privilege_escalation]
become_method=sudo
become_user=root
[inventory]
enable_plugins = host_list, script, yaml, ini, auto
[ssh_connection]
#pipelining = True
ssh_args = -o ControlMaster=auto -o ControlPersist=18000 -o PreferredAuthentications=publickey
control_path = %(directory)s/ansible-ssh-%%h-%%p-%%r