add ansible.cfg; other skeleton stuff
This commit is contained in:
26
ansible.cfg
Normal file
26
ansible.cfg
Normal file
@ -0,0 +1,26 @@
|
||||
[defaults]
|
||||
inventory = hosts
|
||||
roles_path = roles
|
||||
collections_path = collections
|
||||
remote_tmp = /tmp/.ansible-${USER}/tmp
|
||||
gathering = smart
|
||||
gather_timeout = 30
|
||||
fact_path = facts.d
|
||||
fact_caching = jsonfile
|
||||
fact_caching_connection = facts.d
|
||||
fact_caching_timeout = 300
|
||||
retry_files_enabled = False
|
||||
forks = 40
|
||||
timeout = 30
|
||||
host_key_checking = False
|
||||
display_skipped_hosts = False
|
||||
interpreter_python = auto_silent
|
||||
bin_ansible_callbacks = True
|
||||
callbacks_enabled = yaml, timer, profile_tasks
|
||||
deprecation_warnings = False
|
||||
|
||||
|
||||
[ssh_connection]
|
||||
pipelining = True
|
||||
ssh_args = -o ControlMaster=auto -o ControlPersist=60s -o PreferredAuthentications=publickey
|
||||
|
0
collections/.keep
Normal file
0
collections/.keep
Normal file
3
facts.d/lab-dev-1
Normal file
3
facts.d/lab-dev-1
Normal file
@ -0,0 +1,3 @@
|
||||
{
|
||||
"discovered_interpreter_python": "/usr/libexec/platform-python"
|
||||
}
|
3
facts.d/lab-dev-2
Normal file
3
facts.d/lab-dev-2
Normal file
@ -0,0 +1,3 @@
|
||||
{
|
||||
"discovered_interpreter_python": "/usr/libexec/platform-python"
|
||||
}
|
3
facts.d/lab-prod-1
Normal file
3
facts.d/lab-prod-1
Normal file
@ -0,0 +1,3 @@
|
||||
{
|
||||
"discovered_interpreter_python": "/usr/libexec/platform-python"
|
||||
}
|
3
facts.d/lab-prod-2
Normal file
3
facts.d/lab-prod-2
Normal file
@ -0,0 +1,3 @@
|
||||
{
|
||||
"discovered_interpreter_python": "/usr/libexec/platform-python"
|
||||
}
|
0
roles/.keep
Normal file
0
roles/.keep
Normal file
Reference in New Issue
Block a user