mirror of
https://gitlab.com/alemaire/image-specs.git
synced 2025-01-10 23:13:30 +00:00
6aed835e6c
I'm not sure if this happens on all images, but on a pi 4 networking fails to initialize because there's no /etc/iptables/rules.v4. That doesn't seem right, so let's ignore errors and allow networking.
7 lines
218 B
Plaintext
7 lines
218 B
Plaintext
auto eth0
|
|
|
|
# TODO: switch back to iptables-persistent once it re-enters testing
|
|
iface eth0 inet dhcp
|
|
pre-up iptables-restore < /etc/iptables/rules.v4 || true
|
|
pre-up ip6tables-restore < /etc/iptables/rules.v6 || true
|