[pve-devel] [PATCH installer] zfs compression - fix wrongly added zle option

Stoiko Ivanov s.ivanov at proxmox.com
Wed May 4 11:08:42 CEST 2022


introduced in 38aa09be4794307145a0acf37f66aa7e2fac7e62 the newly added
compression mode lze - does not exist (zle does)

Signed-off-by: Stoiko Ivanov <s.ivanov at proxmox.com>
---
quickly tested on a VM by scp'ing the installer script in debug mode.


 proxinstall | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/proxinstall b/proxinstall
index 8b9d058..8ae3cc5 100755
--- a/proxinstall
+++ b/proxinstall
@@ -3093,7 +3093,7 @@ my $create_raid_advanced_grid = sub {
 
     my $combo_compress = Gtk3::ComboBoxText->new();
     $combo_compress->set_tooltip_text("zfs compression algorithm for rpool dataset");
-    my $comp_opts = ["on","off","lzjb","lz4", "lze", "gzip", "zstd"];
+    my $comp_opts = ["on","off","lzjb","lz4", "zle", "gzip", "zstd"];
     foreach my $opt (@$comp_opts) {
 	$combo_compress->append($opt, $opt);
     }
-- 
2.30.2






More information about the pve-devel mailing list