From cb471507ea00a8a8eec2975c30afcd0e06cce1b0 Mon Sep 17 00:00:00 2001 From: Kevin Fenzi Date: Tue, 5 May 2015 21:48:06 +0000 Subject: [PATCH] Drop this known_hosts thing from virt_host_create for now, it has no where to look up the host key. --- tasks/virt_instance_create.yml | 7 ------- 1 file changed, 7 deletions(-) diff --git a/tasks/virt_instance_create.yml b/tasks/virt_instance_create.yml index f0f20d7bb5..1d159fa95f 100644 --- a/tasks/virt_instance_create.yml +++ b/tasks/virt_instance_create.yml @@ -45,13 +45,6 @@ - /etc/ssh/ssh_known_hosts when: inventory_hostname not in result.list_vms -- name: Add new ssh_host_key for newly installed host - local_action: known_hosts path={{item}} host={{ inventory_hostname }} state=present - ignore_errors: True - with_items: - - /root/.ssh/known_hosts - when: inventory_hostname not in result.list_vms - - name: wait for ssh on the vm to start back local_action: wait_for delay=10 host={{ inventory_hostname }} port=22 state=started timeout=1200 when: inventory_hostname not in result.list_vms