![Drew Walters](/assets/img/avatar_default.png)
A change recently changed .yml file extensions to .yaml. This change updates an ansible vars file that was missed during the refactor in order to restore CI functionality. Change-Id: Id832f71d2073ad1b3a552ad67a0a1617e80ea32a Signed-off-by: Drew Walters <andrew.walters@att.com>
18 lines
376 B
YAML
18 lines
376 B
YAML
- name: "Remove network"
|
|
virt_net:
|
|
state: absent
|
|
name: "{{ libvirt_network.name }}"
|
|
|
|
- name: Create yaml for template
|
|
set_fact:
|
|
net_yaml: >-
|
|
{{
|
|
libvirt_network.spec
|
|
| combine({'name': libvirt_network.name}, recursive=True)
|
|
}}
|
|
|
|
- name: "create network"
|
|
include_tasks: "{{ network_action }}.yaml"
|
|
vars:
|
|
network_action: create
|