57 lines
1.6 KiB
XML

<domain type='{{ engine }}'>
<name>{{ name }}</name>
<memory unit='KiB'>{{ memory }}</memory>
<vcpu>{{ cpus }}</vcpu>
<os>
<type arch='{{ arch }}' machine='q35'>hvm</type>
{% if bootdev == 'network' and not uefi_loader %}
<boot dev='{{ bootdev }}'/>
{% endif %}
{% if uefi_loader %}
<loader readonly='yes' type='pflash'>{{ uefi_loader }}</loader>
{% if uefi_nvram %}
<nvram template='{{ uefi_nvram }}'>{{ uefi_nvram }}-{{ name }}</nvram>
{% endif %}
{% endif %}
<bootmenu enable='no'/>
<bios useserial='yes'/>
</os>
{% if engine == 'kvm' %}
<cpu mode='host-passthrough'/>
{% else %}
<cpu mode='host-model'/>
{% endif %}
<features>
<acpi/>
<apic/>
<pae/>
</features>
<clock offset='utc'/>
<on_poweroff>destroy</on_poweroff>
<on_reboot>destroy</on_reboot>
<on_crash>restart</on_crash>
<devices>
<emulator>{{ emulator }}</emulator>
{% for (imagefile, letter) in images %}
<disk type='file' device='disk'>
<driver name='qemu' type='{{ disk_format }}' cache='unsafe'/>
<source file='{{ imagefile }}'/>
<target dev='vd{{ letter }}'/>
</disk>
{% endfor %}
{% for n in range(1, interface_count+1) %}
<interface type='direct'>
{% if n == 1 and mac %}
<mac address='{{ mac }}'/>
{% endif %}
<source dev='{{ "tap-" + name + "i" + n|string }}'/>
<model type='{{ nicdriver }}'/>
{% if uefi_loader and bootdev == 'network' %}
<boot order='{{ n|string }}'/>
{% endif %}
</interface>
{% endfor %}
{{ console }}
</devices>
</domain>