mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2024-11-06 13:20:20 +00:00
conf: backup: Don't explicitly forbid backup of read-only disk
Users may want to use this to create a full backup or even incremental if the checkpoints are pre-existing. We still will not allow to create a checkpoint on a read-only disk as that makes no sense. https://bugzilla.redhat.com/show_bug.cgi?id=1840053 Signed-off-by: Peter Krempa <pkrempa@redhat.com> Reviewed-by: Eric Blake <eblake@redhat.com>
This commit is contained in:
parent
ab7b3167b3
commit
981222b682
@ -411,13 +411,6 @@ virDomainBackupDefAssignStore(virDomainBackupDiskDefPtr disk,
|
|||||||
_("disk '%s' has no media"), disk->name);
|
_("disk '%s' has no media"), disk->name);
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
} else if (src->readonly) {
|
|
||||||
if (disk->store) {
|
|
||||||
virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
|
|
||||||
_("backup of readonly disk '%s' makes no sense"),
|
|
||||||
disk->name);
|
|
||||||
return -1;
|
|
||||||
}
|
|
||||||
} else if (!disk->store) {
|
} else if (!disk->store) {
|
||||||
if (virStorageSourceGetActualType(src) == VIR_STORAGE_TYPE_FILE) {
|
if (virStorageSourceGetActualType(src) == VIR_STORAGE_TYPE_FILE) {
|
||||||
if (!(disk->store = virStorageSourceNew()))
|
if (!(disk->store = virStorageSourceNew()))
|
||||||
|
Loading…
Reference in New Issue
Block a user