mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2024-11-03 20:01:16 +00:00
2360fe5d24
The <domain/> element under /capabilities/guest/arch/ can have no child elements. If that's the case we format: <domain type='xen'> </domain> instead of simpler: <domain type='xen'/> This commit fixes that. Signed-off-by: Michal Privoznik <mprivozn@redhat.com>
30 lines
552 B
XML
30 lines
552 B
XML
<capabilities>
|
|
|
|
<host>
|
|
<cpu>
|
|
<arch>ia64</arch>
|
|
</cpu>
|
|
<power_management/>
|
|
<migration_features>
|
|
<live/>
|
|
<uri_transports>
|
|
<uri_transport>xenmigr</uri_transport>
|
|
</uri_transports>
|
|
</migration_features>
|
|
</host>
|
|
|
|
<guest>
|
|
<os_type>xen</os_type>
|
|
<arch name='ia64'>
|
|
<wordsize>64</wordsize>
|
|
<emulator>/usr/lib/xen/bin/qemu-dm</emulator>
|
|
<machine>xenpv</machine>
|
|
<domain type='xen'/>
|
|
</arch>
|
|
<features>
|
|
<ia64_be/>
|
|
</features>
|
|
</guest>
|
|
|
|
</capabilities>
|