Remove interface left over from previous net model

Change-Id: I4217b61125d6984d76b68b13d7e2600c8aa33c9f
This commit is contained in:
Kostiantyn Kalynovskyi 2021-06-18 19:59:46 +00:00
parent 6ca0fcff0c
commit 124c8362a4

View File

@ -182,16 +182,11 @@ flavorTemplates:
<alias name="ide"/>
</controller>
<interface type='network'>
<source network='pxe'/>
<model type='virtio'/>
</interface>
# for each interface defined in vino, e.g.
{% for interface in domain.interfaces %}
<interface type='bridge'>
<interface type='{{ interface.type }}'>
<mac address='{{ interface.macAddress }}'/>
<source bridge='{{ interface.network }}'/>
<source {{ interface.type }}='{{ interface.network }}'/>
<model type='virtio'/>
</interface>
{% endfor %}