From e882b88697f643b94b7ceb186d0f20e27a4970d8 Mon Sep 17 00:00:00 2001 From: Mischa ter Smitten Date: Thu, 3 Nov 2016 10:20:58 +0100 Subject: [PATCH] Improved ansible.cfg (#70) * Add working public private key pair * Improved ansible_managed setting * Make use of SSH pipelining --- .infra/Freyfile.hcl | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.infra/Freyfile.hcl b/.infra/Freyfile.hcl index ca9166d..314d03d 100644 --- a/.infra/Freyfile.hcl +++ b/.infra/Freyfile.hcl @@ -10,6 +10,10 @@ global { } defaults { host_key_checking = false + ansible_managed = "Ansible managed" + } + ssh_connection { + pipelining = true } } }