Merge pull request #185763 from srhb/zfs-scrub-synchronously

nixos/zfs: scrub synchronously
This commit is contained in:
Franz Pletz
2022-08-10 15:20:52 +02:00
committed by GitHub
+2 -2
View File
@@ -767,10 +767,10 @@ in
description = "ZFS pools scrubbing";
after = [ "zfs-import.target" ];
serviceConfig = {
Type = "oneshot";
Type = "simple";
};
script = ''
${cfgZfs.package}/bin/zpool scrub ${
${cfgZfs.package}/bin/zpool scrub -w ${
if cfgScrub.pools != [] then
(concatStringsSep " " cfgScrub.pools)
else