[pbs-devel] [PATCH proxmox-backup] ui: tape: fix restore datastore mapping parameter construction
Dominik Csapak
d.csapak at proxmox.com
Tue Jun 6 11:20:45 CEST 2023
We recently took into account the selected datastore when restoring from
tape, but the snapshot grids value may not only be a single datastore, it can
also be a list of snapshots, datastores or 'all'.
handle these cases and extract the source datastore correctly.
This fixes tape restoration when not a whole datastore is selected.
Reported in the forum:
https://forum.proxmox.com/threads/restore-from-lto-parameter-verification-errors-store.128445
Fixes: df881ed0 ("ui: tape: fix restoring a single datastore")
Signed-off-by: Dominik Csapak <d.csapak at proxmox.com>
---
this patch should also apply cleanly on the stable-2 branch currently
www/tape/window/TapeRestore.js | 13 +++++++++++++
1 file changed, 13 insertions(+)
diff --git a/www/tape/window/TapeRestore.js b/www/tape/window/TapeRestore.js
index 2ff7c4dd..c1d3493c 100644
--- a/www/tape/window/TapeRestore.js
+++ b/www/tape/window/TapeRestore.js
@@ -380,6 +380,19 @@ Ext.define('PBS.TapeManagement.TapeRestoreWindow', {
if (values.store.toString() !== "") {
if (vm.get('singleDatastore')) {
let source = controller.lookup('snapshotGrid').getValue();
+ if (source === 'all') {
+ // all values are selected
+ source = values.store;
+ } else if (Ext.isArray(source)) {
+ if (source[0].indexOf(':') !== -1) {
+ // one or multiple snapshots are selected
+ // extract datastore from first
+ source = source[0].split(':')[0];
+ } else {
+ // one whole datstore is selected
+ source = source[0];
+ }
+ }
datastores.push(`${source}=${values.store}`);
} else {
datastores.push(values.store);
--
2.30.2
More information about the pbs-devel
mailing list