From 0261e875679f1bf63c8d689da7fc7e014597885d Mon Sep 17 00:00:00 2001 From: Stonewall Jackson Date: Sat, 4 Feb 2023 01:23:43 -0500 Subject: initial commit --- ansible.cfg | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 ansible.cfg (limited to 'ansible.cfg') 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 -- cgit