From aa128b328d9419644790c74a8a10cf0d2cadeff5 Mon Sep 17 00:00:00 2001 From: P. J. McDermott Date: Sat, 14 Jun 2014 12:30:48 -0400 Subject: Generate /etc/network/interfaces at boot. --- (limited to 'src.etc') diff --git a/src.etc/init.d/networking b/src.etc/init.d/networking index 673cba5..25714c1 100755 --- a/src.etc/init.d/networking +++ b/src.etc/init.d/networking @@ -3,6 +3,15 @@ start() { log 'Configuring network interfaces' + exec 3>/etc/network/interfaces + printf 'auto lo\niface lo inet loopback\n\n' >&3 + for iface in /sys/class/net/eth*; do + iface="${iface##*/}" + [ "x${iface}" = 'xeth*' ] && continue + printf 'auto %s\niface %s inet dhcp\n\n' \ + "${iface}" "${iface}" >&3 + done + exec 3>&- if [ -e /etc/network/interfaces.local ]; then file=/etc/network/interfaces.local else -- cgit v0.9.1