summary refs log tree commit diff
path: root/nixos
diff options
context:
space:
mode:
authorJoachim Fasting <joachifm@fastmail.fm>2016-09-10 20:11:02 +0200
committerAlexander Ried <ried@mytum.de>2016-09-13 11:19:22 +0200
commit167eef2bab6f6b1ebcb03f8305dcafefd0c95544 (patch)
tree5c7c9bf77b1c0b2a8fe3a2f699da3796fc747a7a /nixos
parent926428bdb5d55769251d9f07bb6710c89f9620fa (diff)
downloadnixlib-167eef2bab6f6b1ebcb03f8305dcafefd0c95544.tar
nixlib-167eef2bab6f6b1ebcb03f8305dcafefd0c95544.tar.gz
nixlib-167eef2bab6f6b1ebcb03f8305dcafefd0c95544.tar.bz2
nixlib-167eef2bab6f6b1ebcb03f8305dcafefd0c95544.tar.lz
nixlib-167eef2bab6f6b1ebcb03f8305dcafefd0c95544.tar.xz
nixlib-167eef2bab6f6b1ebcb03f8305dcafefd0c95544.tar.zst
nixlib-167eef2bab6f6b1ebcb03f8305dcafefd0c95544.zip
influxdb service: network-interfaces.target -> network.target
Diffstat (limited to 'nixos')
-rw-r--r--nixos/modules/services/databases/influxdb.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/modules/services/databases/influxdb.nix b/nixos/modules/services/databases/influxdb.nix
index e2268bd556ef..ed477524d4cb 100644
--- a/nixos/modules/services/databases/influxdb.nix
+++ b/nixos/modules/services/databases/influxdb.nix
@@ -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}";