From da513e260c3c7eeff8375c508e0ec1f30d699eeb Mon Sep 17 00:00:00 2001 From: Thomas Lamprecht Date: Sun, 10 Mar 2024 18:46:34 +0100 Subject: [PATCH] esxi plugin: do not support the images content-type Signed-off-by: Thomas Lamprecht --- src/PVE/Storage/ESXiPlugin.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/PVE/Storage/ESXiPlugin.pm b/src/PVE/Storage/ESXiPlugin.pm index 0227fe6..b66c5a3 100644 --- a/src/PVE/Storage/ESXiPlugin.pm +++ b/src/PVE/Storage/ESXiPlugin.pm @@ -28,7 +28,7 @@ sub type { sub plugindata { return { - content => [ { import => 1, images => 1 }, { import => 1, images => 1 }], + content => [ { import => 1 }, { import => 1 }], format => [ { raw => 1, qcow2 => 1, vmdk => 1 } , 'raw' ], }; }