Merge pull request #148 from ryanrhughes/wait-for-one-interface

Add override to only require one network interface online
This commit is contained in:
David Heinemeier Hansson
2025-07-12 21:41:38 -04:00
committed by GitHub
2 changed files with 17 additions and 0 deletions

7
migrations/1752365998.sh Normal file
View File

@ -0,0 +1,7 @@
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