nixos/systemd: ip-up and network-online targets should come after networkd-wait-online

This commit is contained in:
William A. Kennington III 2014-11-24 11:51:43 -08:00
parent c234e7b115
commit 0626c1ecf0

View File

@ -1027,7 +1027,10 @@ in
restartTriggers = [ config.environment.etc."systemd/network".source ];
};
systemd.services.systemd-networkd-wait-online.wantedBy = [ "network-online.target" ];
systemd.services.systemd-networkd-wait-online = {
before = [ "network-online.target" "ip-up.target" ];
wantedBy = [ "network-online.target" "ip-up.target" ];
};
systemd.services."systemd-network-wait-online@" = {
description = "Wait for Network Interface %I to be Configured";