mirror of
https://github.com/virt-manager/virt-manager.git
synced 2025-02-10 13:57:39 +03:00
qemu and all related hypervisors (xen, vz) haven't needed this in the common case for a very long time, so make keymap=None the default
22 lines
615 B
XML
22 lines
615 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>
|
|
<devices>
|
|
<disk type="file" device="disk">
|
|
<driver name="qemu" type="qcow2"/>
|
|
<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>
|
|
<console type="pty"/>
|
|
<graphics type="vnc" port="-1"/>
|
|
</devices>
|
|
</domain>
|