From 636be0b7beaa33ce106743f9c5889ad367d25226 Mon Sep 17 00:00:00 2001 From: Valentin Gologuzov Date: Fri, 3 Apr 2015 09:59:55 +0200 Subject: [PATCH] wrong ansible documentation - yes (known_hosts module expected not ), fix second pb --- playbooks/groups/copr-backend-newcloud.yml | 1 + playbooks/groups/copr-frontend-newcloud.yml | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/playbooks/groups/copr-backend-newcloud.yml b/playbooks/groups/copr-backend-newcloud.yml index 7987224a68..98a4f53945 100644 --- a/playbooks/groups/copr-backend-newcloud.yml +++ b/playbooks/groups/copr-backend-newcloud.yml @@ -16,6 +16,7 @@ - include: "{{ tasks }}/persistent_cloud_new.yml" - name: clean out old known_hosts for copr-be-dev local_action: known_hosts path=/root/.ssh/known_hosts host=copr-be-dev.cloud.fedoraproject.org state=absent + ignore_errors: True - include: "{{ tasks }}/growroot_cloud.yml" - name: cloud basic setup diff --git a/playbooks/groups/copr-frontend-newcloud.yml b/playbooks/groups/copr-frontend-newcloud.yml index e0f9227244..326a435bfd 100644 --- a/playbooks/groups/copr-frontend-newcloud.yml +++ b/playbooks/groups/copr-frontend-newcloud.yml @@ -14,7 +14,8 @@ tasks: - include: "{{ tasks }}/persistent_cloud_new.yml" - name: clean out old known_hosts for copr-fe-dev - local_action: known_hosts path=/root/.ssh/known_hosts name=copr-fe-dev.cloud.fedoraproject.org state=absent + local_action: known_hosts path=/root/.ssh/known_hosts host=copr-fe-dev.cloud.fedoraproject.org state=absent + ignore_errors: True - include: "{{ tasks }}/growroot_cloud.yml"