diff options
Diffstat (limited to 'scripts/boot/9990-networking.sh')
-rwxr-xr-x | scripts/boot/9990-networking.sh | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/scripts/boot/9990-networking.sh b/scripts/boot/9990-networking.sh index f32ae6c..d9607b7 100755 --- a/scripts/boot/9990-networking.sh +++ b/scripts/boot/9990-networking.sh @@ -111,10 +111,6 @@ do_netsetup () for interface in ${DEVICE}; do ipconfig -t "$ETHDEV_TIMEOUT" ${interface} | tee /netboot-${interface}.config - # squeeze - [ -e /tmp/net-${interface}.conf ] && . /tmp/net-${interface}.conf - - # wheezy [ -e /run/net-${interface}.conf ] && . /run/net-${interface}.conf if [ "$IPV4ADDR" != "0.0.0.0" ] @@ -129,10 +125,6 @@ do_netsetup () # source relevant ipconfig output OLDHOSTNAME=${HOSTNAME} - # squeeze - [ -e /tmp/net-${interface}.conf ] && . /tmp/net-${interface}.conf - - # wheezy [ -e /run/net-${interface}.conf ] && . /run/net-${interface}.conf [ -z ${HOSTNAME} ] && HOSTNAME=${OLDHOSTNAME} |