mirror of
https://github.com/virt-manager/virt-manager.git
synced 2025-01-10 01:18:03 +03:00
986097d5f8
If a VM is defined and never started the nvram file might not exist and in that case it's created by libvirt automatically on the first start. Resolves: https://bugzilla.redhat.com/show_bug.cgi?id=1679018 Signed-off-by: Pavel Hrdina <phrdina@redhat.com>
24 lines
629 B
XML
24 lines
629 B
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"/>
|
|
<loader readonly="yes" type="pflash">/usr/share/ovmf/ovmf-efi.fd</loader>
|
|
<nvram>/nvram/clone-new_VARS.fd</nvram>
|
|
</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>
|
|
</devices>
|
|
</domain>
|