mirror of
https://github.com/nix-community/disko
synced 2024-11-10 06:14:14 +00:00
examples: use zstd compression as default
This commit is contained in:
parent
1c38664f59
commit
b755564539
3 changed files with 4 additions and 4 deletions
|
@ -152,7 +152,7 @@
|
|||
type = "zpool";
|
||||
mode = "mirror";
|
||||
rootFsOptions = {
|
||||
compression = "lz4";
|
||||
compression = "zstd";
|
||||
"com.sun:auto-snapshot" = "false";
|
||||
};
|
||||
mountpoint = "/";
|
||||
|
|
|
@ -48,7 +48,7 @@
|
|||
type = "zpool";
|
||||
mode = "mirror";
|
||||
rootFsOptions = {
|
||||
compression = "lz4";
|
||||
compression = "zstd";
|
||||
"com.sun:auto-snapshot" = "false";
|
||||
};
|
||||
mountpoint = "/";
|
||||
|
|
|
@ -19,8 +19,8 @@ diskoLib.testLib.makeDiskoTest {
|
|||
out == expected_value
|
||||
), f"Expected {property}={expected_value} on {ds}, got: {out}"
|
||||
|
||||
assert_property("zroot", "compression", "lz4")
|
||||
assert_property("zroot/zfs_fs", "compression", "lz4")
|
||||
assert_property("zroot", "compression", "zstd")
|
||||
assert_property("zroot/zfs_fs", "compression", "zstd")
|
||||
assert_property("zroot", "com.sun:auto-snapshot", "false")
|
||||
assert_property("zroot/zfs_fs", "com.sun:auto-snapshot", "true")
|
||||
assert_property("zroot/zfs_testvolume", "volsize", "10M")
|
||||
|
|
Loading…
Reference in a new issue