forked from genghisken/gkansible
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ansible_example.cfg
43 lines (23 loc) · 882 Bytes
/
ansible_example.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
39
40
41
42
43
[defaults]
inventory = hosts.yml
# EDIT the remote_user!
remote_user = ubuntu
deprecation_warnings = False
# Note to self. Ansible stores temporary stuff in ~/.ansible/ etc. Problem with this is
# if you have an automounted home directory, root may not be able to write to it. Move it
# to /tmp/ where there are no write issues. (There also may be added complications when
# the home directory is shared across all the target machines.)
remote_tmp = /tmp/ansible-$USER
local_tmp = /tmp/ansible-$USER
# If running from within the github dev area, specify where the collections are. Otherwise
# this should pick up the roles from ~/.ansible (so leave commented out).
#roles_path = gkservercollection/roles
[inventory]
[privilege_escalation]
[paramiko_connection]
[ssh_connection]
[persistent_connection]
[sudo_become_plugin]
[selinux]
[colors]
[diff]