]> git.proxmox.com Git - pve-installer.git/commitdiff
fix #3905: allow lze/gzip/zstd compression for ZFS
authorStoiko Ivanov <s.ivanov@proxmox.com>
Fri, 11 Mar 2022 16:04:20 +0000 (17:04 +0100)
committerThomas Lamprecht <t.lamprecht@proxmox.com>
Mon, 14 Mar 2022 15:08:59 +0000 (16:08 +0100)
Since all our zfs installs use proxmox-boot-tool the compatibility is
not an issue anymore

Signed-off-by: Stoiko Ivanov <s.ivanov@proxmox.com>
proxinstall

index 1777801ddd320eef0ede82a7553c5907e9db6e8f..ae3dd9545597f7ae205eb64de8b92b8451bd2ad2 100755 (executable)
@@ -3062,8 +3062,7 @@ my $create_raid_advanced_grid = sub {
 
     my $combo_compress = Gtk3::ComboBoxText->new();
     $combo_compress->set_tooltip_text("zfs compression algorithm for rpool dataset");
-    # note: gzip / lze not allowed for bootfs vdevs
-    my $comp_opts = ["on","off","lzjb","lz4"];
+    my $comp_opts = ["on","off","lzjb","lz4", "lze", "gzip", "zstd"];
     foreach my $opt (@$comp_opts) {
        $combo_compress->append($opt, $opt);
     }