1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

influxdb service: network-interfaces.target -> network.target

This commit is contained in:
Joachim Fasting 2016-09-10 20:11:02 +02:00 committed by Alexander Ried
parent 926428bdb5
commit 167eef2bab

View file

@ -160,7 +160,7 @@ in
systemd.services.influxdb = {
description = "InfluxDB Server";
wantedBy = [ "multi-user.target" ];
after = [ "network-interfaces.target" ];
after = [ "network.target" ];
serviceConfig = {
ExecStart = ''${cfg.package}/bin/influxd -config "${configFile}"'';
User = "${cfg.user}";