mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 15:11:25 +00:00
94a906b59a
systemd-fsck-generator only produces these lines if it can find the necessary fsck executable in its PATH. fixes #29139.
30 lines
788 B
Nix
30 lines
788 B
Nix
import ./make-test.nix {
|
|
name = "fsck";
|
|
|
|
machine = { lib, ... }: {
|
|
virtualisation.emptyDiskImages = [ 1 ];
|
|
|
|
fileSystems = lib.mkVMOverride {
|
|
"/mnt" = {
|
|
device = "/dev/vdb";
|
|
fsType = "ext4";
|
|
autoFormat = true;
|
|
};
|
|
};
|
|
};
|
|
|
|
testScript = ''
|
|
$machine->waitForUnit('default.target');
|
|
|
|
subtest "root fs is fsckd", sub {
|
|
$machine->succeed('journalctl -b | grep "fsck.ext4.*/dev/vda"');
|
|
};
|
|
|
|
subtest "mnt fs is fsckd", sub {
|
|
$machine->succeed('journalctl -b | grep "fsck.*/dev/vdb.*clean"');
|
|
$machine->succeed('grep "Requires=systemd-fsck@dev-vdb.service" /run/systemd/generator/mnt.mount');
|
|
$machine->succeed('grep "After=systemd-fsck@dev-vdb.service" /run/systemd/generator/mnt.mount');
|
|
};
|
|
'';
|
|
}
|