diff options
author | Emma Foley <emma.l.foley@intel.com> | 2018-02-21 09:58:28 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@opnfv.org> | 2018-02-21 09:58:28 +0000 |
commit | a0e7bc354558278d3f566e8abe9886e18050e887 (patch) | |
tree | de5f0c3c03ce49f45fa104c0beae7a53f877b342 /ansible/roles/infra_destroy_previous_configuration/tasks/main.yml | |
parent | 4946bfbee16b9738a996d7ec6750caa9c064d156 (diff) | |
parent | 273aa4ae30248269101207ea379a866bb4ecd857 (diff) |
Merge "Bug fix for Ansible destroy VM script"
Diffstat (limited to 'ansible/roles/infra_destroy_previous_configuration/tasks/main.yml')
-rw-r--r-- | ansible/roles/infra_destroy_previous_configuration/tasks/main.yml | 15 |
1 files changed, 4 insertions, 11 deletions
diff --git a/ansible/roles/infra_destroy_previous_configuration/tasks/main.yml b/ansible/roles/infra_destroy_previous_configuration/tasks/main.yml index 5595cd501..e6c2c0229 100644 --- a/ansible/roles/infra_destroy_previous_configuration/tasks/main.yml +++ b/ansible/roles/infra_destroy_previous_configuration/tasks/main.yml @@ -26,17 +26,10 @@ register: virt_vms - name: Destroy old VMs - virt: - command: destroy - name: "{{ item.hostname }}" - when: item.hostname in virt_vms.list_vms - with_items: "{{ infra_deploy_vars.nodes }}" - -- name: Undefine old VMs - virt: - command: undefine - name: "{{ item.hostname }}" - when: item.hostname in virt_vms.list_vms + include_tasks: delete_vm.yml + extra_vars: "{{ virt_vms }}" + loop_control: + loop_var: node_item with_items: "{{ infra_deploy_vars.nodes }}" - name: Delete old networks |