Merge "dhcp.sh predictible ifnames"
This commit is contained in:
commit
0523f992bc
@ -0,0 +1,6 @@
|
||||
---
|
||||
fixes:
|
||||
- |
|
||||
Add support for TinyIPA predictible device names in dhcp.sh script by changing
|
||||
of NETDEVICES variable. It will support any device from /proc/net/dev starting
|
||||
with e or p letter.
|
@ -6,7 +6,7 @@
|
||||
# This waits until all devices have registered
|
||||
/sbin/udevadm settle --timeout=%UDEV_SETTLE_TIMEOUT%
|
||||
|
||||
NETDEVICES="$(awk -F: '/eth.:|tr.:/{print $1}' /proc/net/dev 2>/dev/null)"
|
||||
NETDEVICES="$(awk -F: '/^ *e.*:|^ *p.*:/{print $1}' /proc/net/dev 2>/dev/null)"
|
||||
echo "$0: Discovered network devices: $NETDEVICES"
|
||||
for DEVICE in $NETDEVICES; do
|
||||
ifconfig $DEVICE | grep -q "inet addr"
|
||||
|
Loading…
Reference in New Issue
Block a user