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 71F47917F9 for ; Tue, 30 Jan 2024 10:39:04 +0100 (CET) Received: from firstgate.proxmox.com (localhost [127.0.0.1]) by firstgate.proxmox.com (Proxmox) with ESMTP id 5A96F1F9FC for ; Tue, 30 Jan 2024 10:39:04 +0100 (CET) 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 ; Tue, 30 Jan 2024 10:39:02 +0100 (CET) Received: from proxmox-new.maurer-it.com (localhost.localdomain [127.0.0.1]) by proxmox-new.maurer-it.com (Proxmox) with ESMTP id A4BF844AAF for ; Tue, 30 Jan 2024 10:39:02 +0100 (CET) Date: Tue, 30 Jan 2024 10:38:56 +0100 From: Fabian =?iso-8859-1?q?Gr=FCnbichler?= To: Proxmox VE development discussion References: <20231004073541.104105-1-f.ebner@proxmox.com> <20231004073541.104105-2-f.ebner@proxmox.com> In-Reply-To: <20231004073541.104105-2-f.ebner@proxmox.com> MIME-Version: 1.0 User-Agent: astroid/0.16.0 (https://github.com/astroidmail/astroid) Message-Id: <1706607501.n4ap98ejyf.astroid@yuna.none> Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-SPAM-LEVEL: Spam detection results: 0 AWL 0.064 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 SPF_HELO_NONE 0.001 SPF: HELO does not publish an SPF Record SPF_PASS -0.001 SPF: sender matches SPF record T_SCC_BODY_TEXT_LINE -0.01 - Subject: [pve-devel] applied: [PATCH storage 2/2] plugin schema: improve description of 'nodes' property 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: Tue, 30 Jan 2024 09:39:04 -0000 applied this on already, thanks! On October 4, 2023 9:35 am, Fiona Ebner wrote: > The default description doesn't make it clear what the property is > used for in the context of storages. >=20 > Signed-off-by: Fiona Ebner > --- > src/PVE/Storage/Plugin.pm | 5 ++++- > 1 file changed, 4 insertions(+), 1 deletion(-) >=20 > diff --git a/src/PVE/Storage/Plugin.pm b/src/PVE/Storage/Plugin.pm > index dc89d13..953b785 100644 > --- a/src/PVE/Storage/Plugin.pm > +++ b/src/PVE/Storage/Plugin.pm > @@ -138,7 +138,10 @@ my $defaultData =3D { > type =3D> { description =3D> "Storage type." }, > storage =3D> get_standard_option('pve-storage-id', > { completion =3D> \&PVE::Storage::complete_storage }), > - nodes =3D> get_standard_option('pve-node-list', { optional =3D> 1 }), > + nodes =3D> get_standard_option('pve-node-list', { > + description =3D> "List of nodes for which the storage configuration= applies.", > + optional =3D> 1, > + }), > content =3D> { > description =3D> "Allowed content types.\n\nNOTE: the value " . > "'rootdir' is used for Containers, and value 'images' for VMs.\n", > --=20 > 2.39.2 >=20 >=20 >=20 > _______________________________________________ > pve-devel mailing list > pve-devel@lists.proxmox.com > https://lists.proxmox.com/cgi-bin/mailman/listinfo/pve-devel >=20 >=20 >=20