World! Could smb, please, help me with the following problem: I need to change boot options in input.xml file for a virtual machine FOO to boot (any time) from hdd. Are there any mistakes, will that work? Should I add smth to output.xml? (input.xml)
<domain type='qemu' >
<name>FOO</name>
<os>
<type>hvm</type>
<kernel>/var/lib/qemu/install/vmlinuz</kernel>
<initrd>/var/lib/qemu/install/initrd</initrd>
<cmdline> kickstart=http://example.com/myguest.ks </cmdline>
</os>
<memory>131072</memory>
<vcpu>1</vcpu>
<devices>
<disk type='file'>
<source file='/var/lib/qemu/images/FOO.img'/>
<target dev='hda'/>
</disk>
</devices>
</domain>
(output.xml)
<domain type='qemu' >
<name>FOO</name>
<os>
<type>hvm</type>
<boot dev='hd'/>
</os>
<memory>131072</memory>
<vcpu>1</vcpu>
<devices>
<disk type='file'>
<source file='/var/lib/qemu/images/FOO.img'/>
<target dev='hda'/>
</disk>
</devices>
</domain>