From 0554c03683d2532ad2fadb2e4f8b1528cd5c448b Mon Sep 17 00:00:00 2001 From: Fiona Ebner Date: Wed, 4 Oct 2023 09:35:41 +0200 Subject: [PATCH] plugin schema: improve description of 'nodes' property The default description doesn't make it clear what the property is used for in the context of storages. Signed-off-by: Fiona Ebner --- src/PVE/Storage/Plugin.pm | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/PVE/Storage/Plugin.pm b/src/PVE/Storage/Plugin.pm index 815773b..fbbf491 100644 --- a/src/PVE/Storage/Plugin.pm +++ b/src/PVE/Storage/Plugin.pm @@ -138,7 +138,10 @@ my $defaultData = { type => { description => "Storage type." }, storage => get_standard_option('pve-storage-id', { completion => \&PVE::Storage::complete_storage }), - nodes => get_standard_option('pve-node-list', { optional => 1 }), + nodes => get_standard_option('pve-node-list', { + description => "List of nodes for which the storage configuration applies.", + optional => 1, + }), content => { description => "Allowed content types.\n\nNOTE: the value " . "'rootdir' is used for Containers, and value 'images' for VMs.\n",