libvirt/tests/storagevolxml2xmlin/vol-file-backing.xml
Eric Blake f5580bd6d6 storage: allow interleave in volume XML
The RNG grammar did not allow arbitrary interleaving, which makes
it harder than necessary to create a new volume from handwritten XML.
(Compare also to commit caf516db for pools).

* docs/schemas/storagevol.rng: Support interleaving.
* tests/storagevolxml2xmlin/vol-file-backing.xml: Test it.

Signed-off-by: Eric Blake <eblake@redhat.com>
2013-11-25 07:51:14 -07:00

27 lines
661 B
XML

<volume>
<!-- lines scrambled to test interleaves -->
<key>/var/lib/libvirt/images/sparse.img</key>
<capacity unit='GB'>10</capacity>
<source/>
<target>
<permissions>
<owner>0744</owner>
<mode>0</mode>
<group>0</group>
</permissions>
<path>/var/lib/libvirt/images/sparse.img</path>
</target>
<allocation unit='MiB'>0</allocation>
<backingStore>
<format type='vmdk'/>
<path>/var/lib/virt/images/master.img</path>
<permissions>
<mode>0744</mode>
<label>virt_image_t</label>
<owner>1</owner>
<group>1</group>
</permissions>
</backingStore>
<name>sparse.img</name>
</volume>