nixos/systemd-networkd: wait for udev to settle

... to avoid race condition between udevd renaming and
networkd configuring interfaces (39069)
This commit is contained in:
xeji 2018-04-22 20:10:15 +02:00
parent 2a488c9758
commit 236703f9f3

View file

@ -712,6 +712,9 @@ in
systemd.services.systemd-networkd = {
wantedBy = [ "multi-user.target" ];
restartTriggers = map (f: f.source) (unitFiles);
# prevent race condition with interface renaming (#39069)
requires = [ "systemd-udev-settle.service" ];
after = [ "systemd-udev-settle.service" ];
};
systemd.services.systemd-networkd-wait-online = {