mirror of
https://github.com/basecamp/omarchy.git
synced 2025-07-27 20:29:24 +00:00
8 lines
349 B
Bash
8 lines
349 B
Bash
![]() |
echo "Add override to only require one network interface to be online"
|
||
|
sudo mkdir -p /etc/systemd/system/systemd-networkd-wait-online.service.d
|
||
|
sudo tee /etc/systemd/system/systemd-networkd-wait-online.service.d/wait-for-only-one-interface.conf >/dev/null <<EOF
|
||
|
[Service]
|
||
|
ExecStart=
|
||
|
ExecStart=/usr/lib/systemd/systemd-networkd-wait-online --any
|
||
|
EOF
|