mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2024-11-05 04:41:20 +00:00
9884e89236
One of our examples in the 'formatbackup.rst' page shows following config: <disk name='vda' backup='yes'/> The schema didn't allow it though. Fix the schema as the internals were supposed to support it (except for the bug fixed in previous patches). Signed-off-by: Peter Krempa <pkrempa@redhat.com> Reviewed-by: Ján Tomko <jtomko@redhat.com>
21 lines
788 B
XML
21 lines
788 B
XML
<domainbackup mode='push'>
|
|
<incremental>1525889631</incremental>
|
|
<disks>
|
|
<disk name='vda' backup='yes' type='file' backupmode='incremental' incremental='1525889631'>
|
|
<driver type='raw'/>
|
|
<target file='/path/to/file'/>
|
|
</disk>
|
|
<disk name='vdb' backup='yes' type='file' backupmode='full'>
|
|
<target file='/fake/vdb.qcow2.SUFFIX'/>
|
|
</disk>
|
|
<disk name='vdc' backup='yes' type='file' backupmode='incremental' incremental='1525889631'>
|
|
<target file='/fake/vdc.qcow2.SUFFIX'/>
|
|
</disk>
|
|
<disk name='vdd' backup='yes' type='file' backupmode='incremental' incremental='1525889631'>
|
|
<target file='/fake/vdd.qcow2.SUFFIX'/>
|
|
</disk>
|
|
<disk name='hda' backup='no'/>
|
|
<disk name='vdextradisk' backup='no'/>
|
|
</disks>
|
|
</domainbackup>
|