diff options
author | lassulus <lassulus@lassul.us> | 2018-04-05 17:36:57 +0200 |
---|---|---|
committer | lassulus <lassulus@lassul.us> | 2018-04-05 17:37:42 +0200 |
commit | f316bb1f31d481dcad90a8b4f4cda0c27208cca4 (patch) | |
tree | 398d70a35bad6eb2244f27435d2948b1b69de737 /lass/2configs | |
parent | 19895a67ff9b9fd7d2511dede24ccf84061b9904 (diff) |
l reaktor-coders: use correct ping path
Diffstat (limited to 'lass/2configs')
-rw-r--r-- | lass/2configs/reaktor-coders.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lass/2configs/reaktor-coders.nix b/lass/2configs/reaktor-coders.nix index 2541df3a6..5fa1611ae 100644 --- a/lass/2configs/reaktor-coders.nix +++ b/lass/2configs/reaktor-coders.nix @@ -84,7 +84,7 @@ with import <stockholm/lib>; (buildSimpleReaktorPlugin "ping" { pattern = "^!ping (?P<args>.*)$$"; script = pkgs.writeDash "ping" '' - exec /var/setuid-wrappers/ping -q -c1 "$1" 2>&1 | tail -1 + exec /run/wrappers/bin/ping -q -c1 "$1" 2>&1 | tail -1 ''; }) ]; |