wrong ansible documentation - yes (known_hosts module expected not ), fix second pb

This commit is contained in:
Valentin Gologuzov 2015-04-03 09:59:55 +02:00
parent a298431c28
commit 636be0b7be
2 changed files with 3 additions and 1 deletions

View file

@ -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

View file

@ -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"