nixpkgs/nixos/tests/nix-required-mounts/ensure-path-not-present.nix
2024-06-26 00:35:45 +00:00

14 lines
272 B
Nix

{
pkgs ? import <nixpkgs> { },
feature,
}:
pkgs.runCommandNoCC "${feature}-not-present" { } ''
if [[ -e /${feature}-files ]]; then
echo "No ${feature} in requiredSystemFeatures, but /${feature}-files was mounted anyway"
exit 1
else
touch $out
fi
''