We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 809b653 commit fc62319Copy full SHA for fc62319
templates/vm.xml.j2
@@ -2,7 +2,7 @@
2
<name>{{ vm.name }}</name>
3
{% if vm.uuid is defined %}
4
<uuid>{{ vm.uuid }}</uuid>
5
- {% elif libvirt_vm_default_uuid_deterministic is sameas true or (vm.uuid_deterministic is defined and vm.uuid_deterministic is sameas true) %}
+ {% elif (libvirt_vm_default_uuid_deterministic | bool) or (vm.uuid_deterministic is defined and (vm.uuid_deterministic | bool)) %}
6
<uuid>{{ vm.name | to_uuid }}</uuid>
7
{% endif %}
8
<memory>{{ vm.memory_mb | int * 1024 }}</memory>
0 commit comments