nixos/zfs: scrub synchronously
This prevents spurious systemd failures if the timer unit starts a new scrub before a long-running one has finished.
This commit is contained in:
@@ -765,10 +765,10 @@ in
|
|||||||
description = "ZFS pools scrubbing";
|
description = "ZFS pools scrubbing";
|
||||||
after = [ "zfs-import.target" ];
|
after = [ "zfs-import.target" ];
|
||||||
serviceConfig = {
|
serviceConfig = {
|
||||||
Type = "oneshot";
|
Type = "simple";
|
||||||
};
|
};
|
||||||
script = ''
|
script = ''
|
||||||
${cfgZfs.package}/bin/zpool scrub ${
|
${cfgZfs.package}/bin/zpool scrub -w ${
|
||||||
if cfgScrub.pools != [] then
|
if cfgScrub.pools != [] then
|
||||||
(concatStringsSep " " cfgScrub.pools)
|
(concatStringsSep " " cfgScrub.pools)
|
||||||
else
|
else
|
||||||
|
|||||||
Reference in New Issue
Block a user