From 347e677b7805290215b525fdc96d53e728a6aa1a Mon Sep 17 00:00:00 2001 From: Thomas Lamprecht Date: Wed, 23 Jun 2021 20:22:50 +0200 Subject: [PATCH] btrfs: drop qcow2 and vmdk for now the web-interface always prefers qcow2 once that is in the list, itself a bug on it's own as the preferred one from the backend should be preferred too, but still, vmdk support should not be extended we can only cope with that in a limited way anyway, and both can always get enabled later easily, if there's actual user-request for it. Disabling is never that easy, at least if one cares about backward compat. Signed-off-by: Thomas Lamprecht --- PVE/Storage/BTRFSPlugin.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PVE/Storage/BTRFSPlugin.pm b/PVE/Storage/BTRFSPlugin.pm index 1fe5db0..133edc6 100644 --- a/PVE/Storage/BTRFSPlugin.pm +++ b/PVE/Storage/BTRFSPlugin.pm @@ -42,7 +42,7 @@ sub plugindata { }, { images => 1, rootdir => 1 }, ], - format => [ { raw => 1, qcow2 => 1, vmdk => 1, subvol => 1 }, 'raw', ], + format => [ { raw => 1, subvol => 1 }, 'raw', ], }; }