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 788d2a5 commit 1ccf881Copy full SHA for 1ccf881
templates/pool.xml.j2
@@ -1,4 +1,8 @@
1
+{% if item.type == 'lvm2' %}
2
+<pool type='logical'>
3
+{% else %}
4
<pool type='{{ item.type }}'>
5
+{% endif %}
6
<name>{{ item.name }}</name>
7
{% if 'capacity' in item %}
8
<capacity>{{ item.capacity }}</capacity>
@@ -7,7 +11,7 @@
11
<source>
12
<name>{{ item.source }}</name>
9
13
{% if item.type == 'lvm2' %}
10
- <format type='logical'/>
14
+ <format type='lvm2'/>
15
{% endif %}
16
</source>
17
0 commit comments