schemas: Allow additional qemu cmd line arguments/env variables and qemuCaps to be interleaved

While command line arguments are sort of positional (because you
have to have two entries, one for "-arg" the other for "value"),
it doesn't really matter whether env variables come before or
after command line arguments.

And it matters even less when playing with qemu capabilities.

Signed-off-by: Michal Privoznik <mprivozn@redhat.com>
Reviewed-by: Fabiano Fidêncio <fidencio@redhat.com>
Reviewed-by: Cole Robinson <crobinso@redhat.com>
This commit is contained in:
Michal Privoznik 2019-12-20 10:24:07 +01:00
parent 6c6d93bc62
commit 1ed32989ea

View File

@ -6295,6 +6295,7 @@
-->
<define name="qemucmdline">
<element name="commandline" ns="http://libvirt.org/schemas/domain/qemu/1.0">
<interleave>
<zeroOrMore>
<element name="arg">
<attribute name='value'/>
@ -6311,11 +6312,13 @@
<empty/>
</element>
</zeroOrMore>
</interleave>
</element>
</define>
<define name="qemucapabilities">
<element name="capabilities" ns="http://libvirt.org/schemas/domain/qemu/1.0">
<interleave>
<zeroOrMore>
<element name="add">
<attribute name="capability"/>
@ -6326,6 +6329,7 @@
<attribute name="capability"/>
</element>
</zeroOrMore>
</interleave>
</element>
</define>