From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from firstgate.proxmox.com (firstgate.proxmox.com [IPv6:2a01:7e0:0:424::9]) by lore.proxmox.com (Postfix) with ESMTPS id 867E11FF17C for ; Wed, 3 Sep 2025 14:08:35 +0200 (CEST) Received: from firstgate.proxmox.com (localhost [127.0.0.1]) by firstgate.proxmox.com (Proxmox) with ESMTP id 8F4A4BAEB; Wed, 3 Sep 2025 14:08:50 +0200 (CEST) From: Hannes Laimer To: pbs-devel@lists.proxmox.com Date: Wed, 3 Sep 2025 14:08:42 +0200 Message-ID: <20250903120844.211292-1-h.laimer@proxmox.com> X-Mailer: git-send-email 2.47.2 MIME-Version: 1.0 X-Bm-Milter-Handled: 55990f41-d878-4baa-be0a-ee34c49e34d2 X-Bm-Transport-Timestamp: 1756901311754 X-SPAM-LEVEL: Spam detection results: 0 AWL 0.025 Adjusted score from AWL reputation of From: address BAYES_00 -1.9 Bayes spam probability is 0 to 1% DMARC_MISSING 0.1 Missing DMARC policy KAM_DMARC_STATUS 0.01 Test Rule for DKIM or SPF Failure with Strict Alignment RCVD_IN_MSPIKE_H2 0.001 Average reputation (+2) SPF_HELO_NONE 0.001 SPF: HELO does not publish an SPF Record SPF_PASS -0.001 SPF: sender matches SPF record Subject: [pbs-devel] [PATCH proxmox-backup v2 0/2] fixes #6195, add support for moving namespaces 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: , Reply-To: Proxmox Backup Server development discussion Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Errors-To: pbs-devel-bounces@lists.proxmox.com Sender: "pbs-devel" Adds support for moving namespaces within a datastore. - we don't create non-existing target namespaces - we don't allow moving if a namespace with the same "name" already exists. So given: /a/b/c/x /1/2/3/4/x moving /1/2/3/4/x to /a/b/c/ is not allowed. these are the only real restrictions. Of course moving itself into sub-namespaces, exeeding depth limit or moving root are also not. But those are not really artificial. v2, thanks @Shannon: - only allow moving if no tasks are running, some more info on the patch itself Hannes Laimer (2): fix #6195: api: datastore: add endpoint for moving namespaces fix #6195: ui: add button/window for moving a namespace pbs-datastore/src/datastore.rs | 121 +++++++++++++++++++++++++++++++++ src/api2/admin/namespace.rs | 50 +++++++++++++- www/Makefile | 1 + www/datastore/Content.js | 38 +++++++++++ www/window/NamespaceMove.js | 47 +++++++++++++ 5 files changed, 255 insertions(+), 2 deletions(-) create mode 100644 www/window/NamespaceMove.js -- 2.47.2 _______________________________________________ pbs-devel mailing list pbs-devel@lists.proxmox.com https://lists.proxmox.com/cgi-bin/mailman/listinfo/pbs-devel