mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2024-11-05 12:51:12 +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>
14 lines
361 B
XML
14 lines
361 B
XML
<domainbackup mode="push">
|
|
<incremental>1525889631</incremental>
|
|
<disks>
|
|
<disk name='vda' type='file'>
|
|
<driver type='raw'/>
|
|
<target file='/path/to/file'/>
|
|
</disk>
|
|
<disk name='vdb' type='file' backupmode='full'/>
|
|
<disk name='vdc'/>
|
|
<disk name='vdd' backup='yes'/>
|
|
<disk name='hda' backup='no'/>
|
|
</disks>
|
|
</domainbackup>
|