From f68910a05fb1b21acf1de414ddb278bb0c423620 Mon Sep 17 00:00:00 2001 From: Fiona Ebner Date: Thu, 11 May 2023 14:30:11 +0200 Subject: [PATCH] fast plug options: order alphabetically Signed-off-by: Fiona Ebner --- PVE/QemuServer.pm | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/PVE/QemuServer.pm b/PVE/QemuServer.pm index 8ff63c3..4b5602f 100644 --- a/PVE/QemuServer.pm +++ b/PVE/QemuServer.pm @@ -4913,16 +4913,16 @@ sub foreach_volid { } my $fast_plug_option = { + 'description' => 1, + 'hookscript' => 1, 'lock' => 1, 'name' => 1, 'onboot' => 1, + 'protection' => 1, 'shares' => 1, 'startup' => 1, - 'description' => 1, - 'protection' => 1, - 'vmstatestorage' => 1, - 'hookscript' => 1, 'tags' => 1, + 'vmstatestorage' => 1, }; for my $opt (keys %$confdesc_cloudinit) { -- 2.39.2