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 16E1C69347 for ; Thu, 12 Nov 2020 19:49:32 +0100 (CET) Received: from firstgate.proxmox.com (localhost [127.0.0.1]) by firstgate.proxmox.com (Proxmox) with ESMTP id 0DEF9143D9 for ; Thu, 12 Nov 2020 19:49:02 +0100 (CET) Received: from smtp5-g21.free.fr (smtp5-g21.free.fr [IPv6:2a01:e0c:1:1599::14]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by firstgate.proxmox.com (Proxmox) with ESMTPS id ABB49143CD for ; Thu, 12 Nov 2020 19:49:01 +0100 (CET) Received: from smtp.lgy.fr (unknown [82.64.218.25]) by smtp5-g21.free.fr (Postfix) with ESMTPS id 8983C5FFD5 for ; Thu, 12 Nov 2020 19:48:55 +0100 (CET) From: Thomas Legay DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=lgy.fr; s=dkim; t=1605206934; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=np2QnZMZo0dH2dhTzUFf61pJkJRX/US6+rDtdE+PsEc=; b=0DFvaD+nPXBAV5DZTW7zIgBwkPt7AodPOuEkuQAFkmJAHnTI1XO0Hf8Ff0XeufFXlGS+o2 gMc/dS+ZI/aedu8wzXWY4848s6h4t2qRK2nhEs/yl8tGyZkP/QMIkfvRJhpR34aQEhnDc9 0KMCa2x0X4h+qTJDi29QY6vbCXbq0xA= To: pve-devel@lists.proxmox.com Date: Thu, 12 Nov 2020 19:48:39 +0100 Message-Id: <20201112184839.391060-2-thomas@lgy.fr> In-Reply-To: <20201112184839.391060-1-thomas@lgy.fr> References: <20201112184839.391060-1-thomas@lgy.fr> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-SPAM-LEVEL: Spam detection results: 0 AWL 0.000 Adjusted score from AWL reputation of From: address DKIM_SIGNED 0.1 Message has a DKIM or DK signature, not necessarily valid DKIM_VALID -0.1 Message has at least one valid DKIM or DK signature DKIM_VALID_AU -0.1 Message has a valid DKIM or DK signature from author's domain DKIM_VALID_EF -0.1 Message has a valid DKIM or DK signature from envelope-from domain RCVD_IN_DNSWL_NONE -0.0001 Sender listed at https://www.dnswl.org/, no trust SPF_HELO_NONE 0.001 SPF: HELO does not publish an SPF Record T_SPF_PERMERROR 0.01 SPF: test of record failed (permerror) URIBL_BLOCKED 0.001 ADMINISTRATOR NOTICE: The query to URIBL was blocked. See http://wiki.apache.org/spamassassin/DnsBlocklists#dnsbl-block for more information. [lgy.fr, lxc.pm] Subject: [pve-devel] [PATCH pve-container] Allow LXC snapshot backup with glusterfs mount point X-BeenThere: pve-devel@lists.proxmox.com X-Mailman-Version: 2.1.29 Precedence: list List-Id: Proxmox VE development discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Nov 2020 18:49:32 -0000 Signed-off-by: Thomas Legay --- src/PVE/LXC.pm | 1 + 1 file changed, 1 insertion(+) diff --git a/src/PVE/LXC.pm b/src/PVE/LXC.pm index 9c150d9..5b54a85 100644 --- a/src/PVE/LXC.pm +++ b/src/PVE/LXC.pm @@ -1114,6 +1114,7 @@ my $do_syncfs = sub { proc => 1, sysfs => 1, tmpfs => 1, + 'fuse.glusterfs' => 1, ); # Now sync all mountpoints... -- 2.25.1