mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-19 16:45:49 +01:00
nixos/smokeping: drop dangling fping6 suid swapper
After recent change `services.smokeping.enable = true;` system started failing the build as: ``` nixpkgs-master $ nix build --no-link -f nixos system --keep-going ... Checking that Nix store paths of all wrapped programs exist... FAIL The path /nix/store/kr2sr80g9ny74im6m6dyh9v44hnzm261-fping-5.0/bin/fping6 does not exist! Please, check the value of `security.wrappers."fping6".source`. ``` `fping` does not provide `fping6` binary for a while. Let's just remove it. Closes: https://github.com/NixOS/nixpkgs/issues/138581
This commit is contained in:
parent
e89c396d66
commit
9000350994
1 changed files with 0 additions and 6 deletions
|
@ -284,12 +284,6 @@ in
|
|||
group = "root";
|
||||
source = "${pkgs.fping}/bin/fping";
|
||||
};
|
||||
fping6 =
|
||||
{ setuid = true;
|
||||
owner = "root";
|
||||
group = "root";
|
||||
source = "${pkgs.fping}/bin/fping6";
|
||||
};
|
||||
};
|
||||
environment.systemPackages = [ pkgs.fping ];
|
||||
users.users.${cfg.user} = {
|
||||
|
|
Loading…
Reference in a new issue