Merge pull request #185763 from srhb/zfs-scrub-synchronously
nixos/zfs: scrub synchronously
This commit is contained in:
commit
a7f89ddd63
1 changed files with 2 additions and 2 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue