summary refs log tree commit diff
path: root/nixos/modules/services
diff options
context:
space:
mode:
authorJoachim Fasting <joachifm@fastmail.fm>2016-09-10 20:20:00 +0200
committerAlexander Ried <ried@mytum.de>2016-09-13 11:19:22 +0200
commitb6e5c620a3cecf3bcd43b30bd7fcf14d34af369f (patch)
treecff829a690876047240bfb367863498458e0e35b /nixos/modules/services
parent3826c19392aed46eac7a84e28d26311a4f8f5dc6 (diff)
downloadnixlib-b6e5c620a3cecf3bcd43b30bd7fcf14d34af369f.tar
nixlib-b6e5c620a3cecf3bcd43b30bd7fcf14d34af369f.tar.gz
nixlib-b6e5c620a3cecf3bcd43b30bd7fcf14d34af369f.tar.bz2
nixlib-b6e5c620a3cecf3bcd43b30bd7fcf14d34af369f.tar.lz
nixlib-b6e5c620a3cecf3bcd43b30bd7fcf14d34af369f.tar.xz
nixlib-b6e5c620a3cecf3bcd43b30bd7fcf14d34af369f.tar.zst
nixlib-b6e5c620a3cecf3bcd43b30bd7fcf14d34af369f.zip
marathon service: remove use of network-interfaces.target
Diffstat (limited to 'nixos/modules/services')
-rw-r--r--nixos/modules/services/scheduling/marathon.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/modules/services/scheduling/marathon.nix b/nixos/modules/services/scheduling/marathon.nix
index 4e837c62dc11..19c9a708f21f 100644
--- a/nixos/modules/services/scheduling/marathon.nix
+++ b/nixos/modules/services/scheduling/marathon.nix
@@ -83,7 +83,7 @@ in {
       description = "Marathon Service";
       environment = cfg.environment;
       wantedBy = [ "multi-user.target" ];
-      after = [ "network-interfaces.target" "zookeeper.service" "mesos-master.service" "mesos-slave.service" ];
+      after = [ "network.target" "zookeeper.service" "mesos-master.service" "mesos-slave.service" ];
 
       serviceConfig = {
         ExecStart = "${pkgs.marathon}/bin/marathon --master ${cfg.master} --zk zk://${concatStringsSep "," cfg.zookeeperHosts}/marathon --http_port ${toString cfg.httpPort} ${concatStringsSep " " cfg.extraCmdLineOptions}";