From 5df96fd652974d1dd3264955ad3981a9882cc0c7 Mon Sep 17 00:00:00 2001 From: P. J. McDermott Date: Tue, 03 Jun 2014 00:15:16 -0400 Subject: busybox.pkg/postinst: Fix network interface names. --- diff --git a/busybox.pkg/postinst b/busybox.pkg/postinst index 844b0a5..f5a66aa 100755 --- a/busybox.pkg/postinst +++ b/busybox.pkg/postinst @@ -24,7 +24,7 @@ if [ "x${1}" = 'xconfigure' ]; then 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#*/}" + iface="${iface##*/}" printf 'auto %s\niface %s inet dhcp\n\n' \ "${iface}" "${iface}" >&3 done -- cgit v0.9.1