nixos/prometheus-exporters/kea: wait for kea

Fixes race conditions like this:

> systemd[1]: Started prometheus-kea-exporter.service.
> kea-exporter[927]: Listening on http://0.0.0.0:9547
> kea-exporter[927]: Socket at /run/kea/dhcp4.sock does not exist. Is Kea running?
> systemd[1]: prometheus-kea-exporter.service: Main process exited, code=exited, status=1/FAILURE
This commit is contained in:
Martin Weinelt 2022-03-17 03:27:21 +01:00
parent 9cfedd0589
commit 8b7ca8bdcb
No known key found for this signature in database
GPG key ID: 87C1E9888F856759

View file

@ -25,6 +25,10 @@ in {
};
};
serviceOpts = {
after = [
"kea-dhcp4-server.service"
"kea-dhcp6-server.service"
];
serviceConfig = {
User = "kea";
ExecStart = ''