mirror of
https://github.com/virt-manager/virt-manager.git
synced 2025-03-09 08:58:27 +03:00
Forcing cirrus isn't correct for non-x86 architectures, so let's have libvirt fill in the default so there's only one place to fix it.
23 lines
664 B
XML
23 lines
664 B
XML
<domain type="xen">
|
|
<name>foobar</name>
|
|
<uuid>00000000-1111-2222-3333-444444444444</uuid>
|
|
<memory>65536</memory>
|
|
<currentMemory>65536</currentMemory>
|
|
<vcpu>1</vcpu>
|
|
<bootloader>/usr/bin/pygrub</bootloader>
|
|
<on_poweroff>destroy</on_poweroff>
|
|
<on_reboot>restart</on_reboot>
|
|
<on_crash>restart</on_crash>
|
|
<devices>
|
|
<disk type="file" device="disk">
|
|
<source file="/dev/default-pool/testvol1.img"/>
|
|
<target dev="xvda" bus="xen"/>
|
|
</disk>
|
|
<interface type="bridge">
|
|
<source bridge="eth0"/>
|
|
<mac address="00:11:22:33:44:55"/>
|
|
</interface>
|
|
<graphics type="vnc" port="-1" keymap="en-us"/>
|
|
</devices>
|
|
</domain>
|