Attempting to make SSH more robust

Change-Id: I068de5b362c39949c5359829c1107b8d3cabc522
diff --git a/ansible.cfg b/ansible.cfg
index 8c02f3f..c86b754 100644
--- a/ansible.cfg
+++ b/ansible.cfg
@@ -1,6 +1,3 @@
-[ssh_connection]
-ssh_args=-o ControlMaster=no
-
 [defaults]
 callback_whitelist = profile_tasks
 host_key_checking = false
diff --git a/group_vars/all b/group_vars/all
new file mode 100644
index 0000000..4f71380
--- /dev/null
+++ b/group_vars/all
@@ -0,0 +1,3 @@
+---
+# file: group_vars/all
+ansible_ssh_common_args: "-o ConnectionAttempts=20"
\ No newline at end of file