summary refs log tree commit diff
path: root/nixos/modules/services/networking/smokeping.nix
diff options
context:
space:
mode:
authorSergei Trofimovich <slyich@gmail.com>2021-09-20 07:55:41 +0100
committerSergei Trofimovich <slyich@gmail.com>2021-09-20 07:57:56 +0100
commit90003509941585339e9a1786446a36a0ce3fc149 (patch)
tree3647071648739d2d1e63919576be268922ec8f69 /nixos/modules/services/networking/smokeping.nix
parente89c396d660e39d71e6a8ab88175405e75952138 (diff)
downloadnixpkgs-90003509941585339e9a1786446a36a0ce3fc149.tar
nixpkgs-90003509941585339e9a1786446a36a0ce3fc149.tar.gz
nixpkgs-90003509941585339e9a1786446a36a0ce3fc149.tar.bz2
nixpkgs-90003509941585339e9a1786446a36a0ce3fc149.tar.lz
nixpkgs-90003509941585339e9a1786446a36a0ce3fc149.tar.xz
nixpkgs-90003509941585339e9a1786446a36a0ce3fc149.tar.zst
nixpkgs-90003509941585339e9a1786446a36a0ce3fc149.zip
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
Diffstat (limited to 'nixos/modules/services/networking/smokeping.nix')
-rw-r--r--nixos/modules/services/networking/smokeping.nix6
1 files changed, 0 insertions, 6 deletions
diff --git a/nixos/modules/services/networking/smokeping.nix b/nixos/modules/services/networking/smokeping.nix
index 12d7ffe8675..0f123fd1877 100644
--- a/nixos/modules/services/networking/smokeping.nix
+++ b/nixos/modules/services/networking/smokeping.nix
@@ -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} = {