-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathansible.cfg
39 lines (32 loc) · 1.04 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
38
[defaults]
# Your ansible inventory "root" path
inventory = .ansible/hosts.yml
# Where to look for and install ansible-galaxy roles
roles_path = .ansible/roles/
# To avoid annoying ssh "... trust new host (yes/no)?"
host_key_checking = False
# Don't create ansible tmp files during execution
retry_files_enabled = False
[ssh_connection]
ssh_args = -o ForwardAgent=yes -o ControlMaster=auto -o ControlPersist=60s
[privilege_escalation]
# Uncomment for autoasking sudo password
# become_ask_pass = True
# -----------------------------------------------------
#
# Some more useful settings, see
# https://docs.ansible.com/ansible/2.6/installation_guide/intro_configuration.html
#
#library = /usr/share/my_modules/
#module_utils = /usr/share/my_module_utils/
#remote_tmp = ~/.ansible/tmp
#local_tmp = ~/.ansible/tmp
#plugin_filters_cfg = /etc/ansible/plugin_filters.yml
#forks = 5
#poll_interval = 15
#sudo_user = root
#ask_pass = True
#transport = smart
#remote_port = 22
#module_lang = C
#module_set_locale = False