aboutsummaryrefslogtreecommitdiffstats
path: root/ansible.cfg
diff options
context:
space:
mode:
authorStonewall Jackson <stonewall@sacredheartsc.com>2023-02-04 01:23:43 -0500
committerStonewall Jackson <stonewall@sacredheartsc.com>2023-02-04 01:52:13 -0500
commit0261e875679f1bf63c8d689da7fc7e014597885d (patch)
tree3f19cd74a0c1070944f75437f30b098d6ef2ffcb /ansible.cfg
downloadselfhosted-0261e875679f1bf63c8d689da7fc7e014597885d.tar.gz
selfhosted-0261e875679f1bf63c8d689da7fc7e014597885d.zip
initial commit
Diffstat (limited to 'ansible.cfg')
-rw-r--r--ansible.cfg20
1 files changed, 20 insertions, 0 deletions
diff --git a/ansible.cfg b/ansible.cfg
new file mode 100644
index 0000000..2f76249
--- /dev/null
+++ b/ansible.cfg
@@ -0,0 +1,20 @@
+[defaults]
+remote_user = root
+gathering = explicit
+retry_files_enabled = False
+vault_password_file = .vault_password
+inventory = inventory
+roles_path = roles
+filter_plugins = plugins/filters
+test_plugins = plugins/tests
+library = plugins/modules:vendor/ansible-freeipa/plugins/modules
+module_utils = plugins/module_utils:vendor/ansible-freeipa/plugins/module_utils
+host_key_checking = False
+force_handlers = True
+
+[inventory]
+any_unparsed_is_failed = True
+
+[ssh_connection]
+pipelining = True
+ssh_args = -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no -o ControlMaster=auto -o ControlPersist=60s