
Since commit 0ce4b6b412
NetworkManager-wait-online.service quits immediately if there is no link yet.
Fix it by removing the '-x' option.
But if we do just that, NM-w-o would add a useless 30 seconds delay in the
case when NM is not running at all.
Solve this by adding a Requisite= dependency on NM.
https://bugzilla.redhat.com/show_bug.cgi?id=710502
14 lines
256 B
SYSTEMD
14 lines
256 B
SYSTEMD
[Unit]
|
|
Description=Network Manager Wait Online
|
|
Requisite=NetworkManager.service
|
|
After=NetworkManager.service
|
|
Wants=network.target
|
|
Before=network.target
|
|
|
|
[Service]
|
|
Type=oneshot
|
|
ExecStart=@bindir@/nm-online -q --timeout=30
|
|
|
|
[Install]
|
|
WantedBy=network.target
|