mirror of
https://github.com/virt-manager/virt-manager.git
synced 2024-12-25 23:21:45 +03:00
e71e5cd9dd
Rather than depend on xmlbuilder infrastructure. We will need to extend this logic for network disks, and it's easier this way.
41 lines
1.1 KiB
XML
41 lines
1.1 KiB
XML
<domain type="kvm">
|
|
<name>clone-new</name>
|
|
<uuid>12345678-1234-1234-1234-123456789012</uuid>
|
|
<memory>262144</memory>
|
|
<currentMemory>262144</currentMemory>
|
|
<vcpu>1</vcpu>
|
|
<os>
|
|
<type arch="i686" machine="pc">hvm</type>
|
|
<boot dev="cdrom"/>
|
|
</os>
|
|
<features>
|
|
<acpi/>
|
|
</features>
|
|
<clock offset="utc"/>
|
|
<on_poweroff>destroy</on_poweroff>
|
|
<on_reboot>restart</on_reboot>
|
|
<on_crash>destroy</on_crash>
|
|
<devices>
|
|
<emulator>/usr/bin/qemu-kvm</emulator>
|
|
<disk type="block" device="disk">
|
|
<target dev="hda" bus="ide"/>
|
|
<source dev="/dev/disk-pool/disk-vol1"/>
|
|
</disk>
|
|
<disk type="file" device="disk">
|
|
<source file="/tmp/clone2.img"/>
|
|
<target dev="hdb" bus="ide"/>
|
|
</disk>
|
|
<interface type="network">
|
|
<mac address="22:23:45:67:89:00"/>
|
|
<source network="test1"/>
|
|
</interface>
|
|
<interface type="bridge">
|
|
<mac address="22:23:45:67:89:01"/>
|
|
<source bridge="br0"/>
|
|
</interface>
|
|
<input type="mouse" bus="ps2"/>
|
|
<graphics type="vnc" port="-1" autoport="yes" listen="127.0.0.1"/>
|
|
<graphics type="vnc" port="-1"/>
|
|
</devices>
|
|
</domain>
|