Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: skip adding dummy route if a default one exists (backport #998) #1000

Merged
merged 1 commit into from
Mar 5, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion package/harvester-os/files/usr/sbin/harv-dummy-iface
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
#!/bin/bash -ex

if ip route show | grep -q '^default'; then
exit 0
fi

ip link add type dummy
ip addr add 192.168.1.100/255.255.255.0 dev dummy0
ip link set dummy0 up
ip route add default via 192.168.1.100
ip route add default via 192.168.1.100
Loading