mirror of
https://github.com/virt-manager/virt-manager.git
synced 2025-01-15 23:24:27 +03:00
7ba76b5748
This is a compound option like we use elsewhere, with suboptions for maxmemory and hugepages.
33 lines
901 B
XML
33 lines
901 B
XML
<domain type="test">
|
|
<name>foobar</name>
|
|
<uuid>00000000-1111-2222-3333-444444444444</uuid>
|
|
<memory>262144</memory>
|
|
<currentMemory>131072</currentMemory>
|
|
<vcpu>7</vcpu>
|
|
<bootloader>/usr/bin/pygrub</bootloader>
|
|
<features>
|
|
<pae/>
|
|
</features>
|
|
<on_poweroff>destroy</on_poweroff>
|
|
<on_reboot>restart</on_reboot>
|
|
<on_crash>restart</on_crash>
|
|
<devices>
|
|
<disk type="file" device="disk">
|
|
<source file="/tmp/__virtinst__cli_root.raw"/>
|
|
<target dev="xvda" bus="xen"/>
|
|
</disk>
|
|
<disk type="file" device="disk">
|
|
<source file="/tmp/__virtinst__cli_scratch.raw"/>
|
|
<target dev="xvdc" bus="xen"/>
|
|
</disk>
|
|
<interface type="user">
|
|
<mac address="00:11:22:33:44:55"/>
|
|
</interface>
|
|
<input type="mouse" bus="xen"/>
|
|
<graphics type="vnc" port="-1" keymap="en-us"/>
|
|
<video>
|
|
<model type="vga"/>
|
|
</video>
|
|
</devices>
|
|
</domain>
|