summaryrefslogtreecommitdiff
path: root/scripts/casper-bottom/23networking
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/casper-bottom/23networking')
-rwxr-xr-xscripts/casper-bottom/23networking12
1 files changed, 10 insertions, 2 deletions
diff --git a/scripts/casper-bottom/23networking b/scripts/casper-bottom/23networking
index cfc565d..1b732d3 100755
--- a/scripts/casper-bottom/23networking
+++ b/scripts/casper-bottom/23networking
@@ -61,14 +61,13 @@ else
# on startup by ifup script - otherwise our root fs might be disconnected!
method="manual"
fi
-
# iterate the physical interfaces and add them to the interfaces list
for interface in /sys/class/net/eth* /sys/class/net/ath* /sys/class/net/wlan*; do
[ -e $interface ] || continue
i="$(basename $interface)"
cat >> "$IFFILE" <<EOF
auto $i
-iface $i inet ${method}
+iface $i inet $method
EOF
done
@@ -96,4 +95,13 @@ EOF
fi
fi
+for i in eth0 eth1 eth2 ath0 wlan0; do
+ grep -q "iface $i" $IFFILE && continue
+ cat >> "$IFFILE" <<EOF
+auto $i
+iface $i inet dhcp
+
+EOF
+done
+
log_end_msg