fsfreeze: Add tool

Add fsfreeze, a Linux-specific tool used to freeze/thaw writes to a
filesystem. It's an extremely simple tool so this should have full
feature-parity.
This commit is contained in:
Tuomas Tynkkynen
2025-01-04 14:27:06 +02:00
parent 257d142a5b
commit ca574b49d3
9 changed files with 192 additions and 0 deletions
+2
View File
@@ -26,6 +26,7 @@ default = ["feat_common_core"]
uudoc = []
feat_common_core = [
"fsfreeze",
"mountpoint",
"lscpu",
"lsmem",
@@ -67,6 +68,7 @@ textwrap = { workspace = true }
dns-lookup = { workspace = true }
#
fsfreeze = { optional = true, version = "0.0.1", package = "uu_fsfreeze", path = "src/uu/fsfreeze" }
lscpu = { optional = true, version = "0.0.1", package = "uu_lscpu", path = "src/uu/lscpu" }
lsmem = { optional = true, version = "0.0.1", package = "uu_lsmem", path = "src/uu/lsmem" }
mountpoint = { optional = true, version = "0.0.1", package = "uu_mountpoint", path = "src/uu/mountpoint" }