-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathansible.cfg
37 lines (30 loc) · 1.18 KB
/
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
35
36
37
[defaults]
inventory = inventory
forks = 50
callback_whitelist = timer, profile_tasks
nocows = 1
#ansible_managed = Ansible managed: {file} modified on %Y-%m-%d %H:%M:%S by {uid} on {host}
ansible_managed = Ansible managed: {file} modified on %Y-%m-%d %H:%M:%S by {uid}
log_path = ansible.log
roles_path = playbooks/roles:playbooks/roles/ansible-freeipa/roles
collections_paths = playbooks/collections
retry_files_enabled = 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:playbooks/roles/ansible-freeipa/modules
module_utils = playbooks/roles/ansible-freeipa/module_utils
#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,password
control_path = %(directory)s/ansible-ssh-%%h-%%p-%%r