owamp: adding module

You can retrieve the one way latency between your client and the remote
host via owping.
This commit is contained in:
Matthieu Coudron 2018-06-05 22:15:28 +09:00
parent 8981cb7b68
commit 358296c05a
2 changed files with 48 additions and 0 deletions

View file

@ -536,6 +536,7 @@
./services/networking/openntpd.nix
./services/networking/openvpn.nix
./services/networking/ostinato.nix
./services/networking/owamp.nix
./services/networking/pdnsd.nix
./services/networking/polipo.nix
./services/networking/powerdns.nix

View file

@ -0,0 +1,47 @@
{ config, lib, pkgs, ... }:
with lib;
let
cfg = config.services.owamp;
in
{
###### interface
options = {
services.owamp.enable = mkEnableOption ''Enable OWAMP server'';
};
###### implementation
config = mkIf cfg.enable {
users.extraUsers = singleton {
name = "owamp";
group = "owamp";
description = "Owamp daemon";
};
users.extraGroups = singleton {
name = "owamp";
};
systemd.services.owamp = {
description = "Owamp server";
wantedBy = [ "multi-user.target" ];
serviceConfig = {
ExecStart="${pkgs.owamp}/bin/owampd -R /run/owamp -d /run/owamp -v -Z ";
PrivateTmp = true;
Restart = "always";
Type="simple";
User = "owamp";
Group = "owamp";
RuntimeDirectory = "owamp";
StateDirectory = "owamp";
AmbientCapabilities = "cap_net_bind_service";
};
};
};
}