From 49badcc891d362d92b8f0dfb71d1c5e710c91898 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miroslav=20Such=C3=BD?= Date: Tue, 15 Oct 2013 09:25:14 +0000 Subject: [PATCH] do not use known_hosts we connect just to builders, and key there change paramiko ignore .ssh/config but obey host_key_checking Unless it make some problem later, I would rather use ssh for transport so it is the same as I use in debugging. --- files/copr/provision/ansible.cfg | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/files/copr/provision/ansible.cfg b/files/copr/provision/ansible.cfg index 8576fa6427..ae290992c9 100644 --- a/files/copr/provision/ansible.cfg +++ b/files/copr/provision/ansible.cfg @@ -48,7 +48,11 @@ sudo_user=root # connection to use when -c is not specified -transport=paramiko +#transport=paramiko +transport=ssh + +# this is needed for paramiko, ssh already have this said in .ssh/config +host_key_checking = False # remote SSH port to be used when --port or "port:" or an equivalent inventory # variable is not specified.