From 6b32cece0901d9fcc41bf898e1bedb5fa7698861 Mon Sep 17 00:00:00 2001 From: Fiona Ebner Date: Thu, 27 Jun 2024 15:05:02 +0200 Subject: [PATCH] fix reminder comment for template regex The necessary change in pve-manager to remove this [0] only got applied during PVE 8.2 [1], so removing this regex has to wait. [0]: https://lists.proxmox.com/pipermail/pve-devel/2021-October/050514.html [1]: https://git.proxmox.com/?p=pve-manager.git;a=commit;h=9c54c52d7996572956e65c4820459ff3a1cda778 Signed-off-by: Fiona Ebner --- src/PVE/Storage.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/PVE/Storage.pm b/src/PVE/Storage.pm index f19a115..739fd6d 100755 --- a/src/PVE/Storage.pm +++ b/src/PVE/Storage.pm @@ -114,7 +114,7 @@ our $VZTMPL_EXT_RE_1 = qr/\.tar\.(gz|xz|zst)/i; our $BACKUP_EXT_RE_2 = qr/\.(tgz|(?:tar|vma)(?:\.(${\PVE::Storage::Plugin::COMPRESSOR_RE}))?)/; -# FIXME remove with PVE 8.0, add versioned breaks for pve-manager +# FIXME remove with PVE 9.0, add versioned breaks for pve-manager our $vztmpl_extension_re = $VZTMPL_EXT_RE_1; # PVE::Storage utility functions