diff options
-rwxr-xr-x | busybox.pkg/postinst | 2 |
1 files changed, 1 insertions, 1 deletions
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 |