From 0eec698ff538f6dbac88f20fca99b8a9872b4616 Mon Sep 17 00:00:00 2001 From: Thomas Lamprecht Date: Mon, 24 Aug 2020 09:45:30 +0200 Subject: [PATCH] move config: add comment about node owning configs Signed-off-by: Thomas Lamprecht --- PVE/AbstractConfig.pm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/PVE/AbstractConfig.pm b/PVE/AbstractConfig.pm index 5d1b662..3348d8a 100644 --- a/PVE/AbstractConfig.pm +++ b/PVE/AbstractConfig.pm @@ -276,6 +276,8 @@ sub destroy_config { # moves configuration owned by calling node to the target node. # dies if renaming fails. +# NOTE: in PVE a node owns the config (hard requirement), so only the owning +# node may move the config to another node, which then becomes the new owner. sub move_config_to_node { my ($class, $vmid, $target_node) = @_;