From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from firstgate.proxmox.com (firstgate.proxmox.com [212.224.123.68]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by lists.proxmox.com (Postfix) with ESMTPS id 79B2E8A2DF for ; Wed, 19 Oct 2022 13:14:13 +0200 (CEST) Received: from firstgate.proxmox.com (localhost [127.0.0.1]) by firstgate.proxmox.com (Proxmox) with ESMTP id 17E403394C for ; Wed, 19 Oct 2022 13:13:43 +0200 (CEST) Received: from proxmox-new.maurer-it.com (proxmox-new.maurer-it.com [94.136.29.106]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by firstgate.proxmox.com (Proxmox) with ESMTPS for ; Wed, 19 Oct 2022 13:13:39 +0200 (CEST) Received: from proxmox-new.maurer-it.com (localhost.localdomain [127.0.0.1]) by proxmox-new.maurer-it.com (Proxmox) with ESMTP id 18E7944A98 for ; Wed, 19 Oct 2022 13:13:38 +0200 (CEST) From: Dominik Csapak To: pbs-devel@lists.proxmox.com Date: Wed, 19 Oct 2022 13:13:30 +0200 Message-Id: <20221019111335.872853-1-d.csapak@proxmox.com> X-Mailer: git-send-email 2.30.2 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-SPAM-LEVEL: Spam detection results: 0 AWL 0.068 Adjusted score from AWL reputation of From: address BAYES_00 -1.9 Bayes spam probability is 0 to 1% KAM_DMARC_STATUS 0.01 Test Rule for DKIM or SPF Failure with Strict Alignment SPF_HELO_NONE 0.001 SPF: HELO does not publish an SPF Record SPF_PASS -0.001 SPF: sender matches SPF record URIBL_BLOCKED 0.001 ADMINISTRATOR NOTICE: The query to URIBL was blocked. See http://wiki.apache.org/spamassassin/DnsBlocklists#dnsbl-block for more information. [media.rs, backup.rs, proxmox-tape.rs, drive.rs, changer.rs, mod.rs, inventory.rs, restore.rs] Subject: [pbs-devel] [PATCH proxmox-backup v3 0/5] allow restoring catalogs during inventory X-BeenThere: pbs-devel@lists.proxmox.com X-Mailman-Version: 2.1.29 Precedence: list List-Id: Proxmox Backup Server development discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 19 Oct 2022 11:14:13 -0000 This series allows automatically restoring the catalog from tape during inventory, by adding a new 'catalog' parameter. This is useful after a disaster, since it allows the admin to re-import all tapes in an automatic way. The first patch is just a cleanup, so it could be applied independently. changes from v2: * convert from Option to bool for parameters with defined defaults * add patch that adds defaults to proxmox-tape inventory call chnages from v1: * rebase on master Dominik Csapak (5): tape: replace '&Path' with 'AsRef' in function parameters api/tape/inventory: optionally try to restore catalogs proxmox-tape: add 'catalog' option to 'proxmox-tape inventory' ui: tape/ChangerStatus: adding parameter selection to inventory proxmox-tape: inventory: add default to parameters src/api2/tape/backup.rs | 11 +-- src/api2/tape/changer.rs | 4 +- src/api2/tape/drive.rs | 121 ++++++++++++++------------ src/api2/tape/media.rs | 34 +++----- src/api2/tape/restore.rs | 26 +++--- src/bin/proxmox-tape.rs | 20 +++-- src/tape/changer/online_status_map.rs | 4 +- src/tape/inventory.rs | 31 ++++--- src/tape/media_catalog.rs | 52 ++++++----- src/tape/media_catalog_cache.rs | 12 +-- src/tape/media_pool.rs | 16 ++-- src/tape/pool_writer/mod.rs | 16 ++-- www/tape/ChangerStatus.js | 66 +++++++------- 13 files changed, 207 insertions(+), 206 deletions(-) -- 2.30.2