mirror of
https://github.com/virt-manager/virt-manager.git
synced 2024-12-23 17:34:21 +03:00
fc6778108b
Currently we hardcode these defaults for installing VMs: <on_poweroff>destroy</on_poweroff> <on_reboot>destroy</on_reboot> <on_crash>destroy</on_crash> And these for post-install config: <on_poweroff>destroy</on_poweroff> <on_reboot>restart</on_reboot> <on_crash>restart</on_crash> But this has some issues. on_crash=restart is problematic in that most configs don't support it, and some like virtuozzo actively reject it. Additionally this we should leave as much to libvirt defaults as we can, which are more sensible in this case. Drop everything except setting on_reboot=destroy for the install time case (which is required for our config changes). Since on_poweroff and on_crash already default to 'destroy', the install time config is unchanged, and the post-install config now on_crash=destroy instead of 'restart'. The s390 on_crash=preserve workaround is dropped, which was intended to avoid a reboot loop caused by on_crash=reboot
35 lines
954 B
XML
35 lines
954 B
XML
<domain type="xen">
|
|
<name>TestGuest</name>
|
|
<currentMemory>204800</currentMemory>
|
|
<memory>409600</memory>
|
|
<uuid>12345678-1234-1234-1234-123456789012</uuid>
|
|
<os>
|
|
<type arch="i686">hvm</type>
|
|
<loader>/usr/lib/xen/boot/hvmloader</loader>
|
|
<bootmenu enable="yes"/>
|
|
<kernel>/foo.img</kernel>
|
|
<initrd>/bar.img</initrd>
|
|
<cmdline>ks=foo.ks</cmdline>
|
|
<dtb>/baz.dtb</dtb>
|
|
<boot dev="cdrom"/>
|
|
</os>
|
|
<features>
|
|
<acpi/><apic/>
|
|
</features>
|
|
<clock offset="utc"/>
|
|
<on_poweroff>destroy</on_poweroff>
|
|
<on_reboot>restart</on_reboot>
|
|
<on_crash>destroy</on_crash>
|
|
<vcpu>5</vcpu>
|
|
<devices>
|
|
<emulator>/usr/lib/xen/bin/qemu-dm</emulator>
|
|
<disk type="file" device="disk">
|
|
<source file="/tmp/test.img"/>
|
|
<target dev="hda" bus="ide"/>
|
|
</disk>
|
|
<input type="mouse" bus="ps2"/>
|
|
<graphics type="vnc" display=":3.4" xauth="/tmp/.Xauthority"/>
|
|
<console type="pty"/>
|
|
</devices>
|
|
</domain>
|