From 4abb327843b65ef5eec3b679230b5c08fd8ef972 Mon Sep 17 00:00:00 2001 From: Fiona Ebner Date: Tue, 30 Jan 2024 11:28:31 +0100 Subject: [PATCH] plugin schema: improve description of 'shared' property It's not clear to users what this property does otherwise. Latest report from the community forum: https://forum.proxmox.com/threads/134393 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 fbbf491..e086de9 100644 --- a/src/PVE/Storage/Plugin.pm +++ b/src/PVE/Storage/Plugin.pm @@ -170,7 +170,10 @@ my $defaultData = { default => "Unlimited for users with Datastore.Allocate privilege, 5 for other users", }, shared => { - description => "Mark storage as shared.", + description => "Indicate that this is a single storage with the same contents on all " + ."nodes (or all listed in the 'nodes' option). It will not make the contents of a " + ."local storage automatically accessible to other nodes, it just marks an already " + ."shared storage as such!", type => 'boolean', optional => 1, },