From ecf42b8c2825471898230d9da8fcee0a8878af8d Mon Sep 17 00:00:00 2001 From: Robby Workman Date: Sat, 7 Jan 2017 20:16:22 -0600 Subject: rc.wireless: Migrate HWADDR getting from ifconfig to iproute2 TODO: Someone fluent with sed needs to review this... --- rc.wireless | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rc.wireless b/rc.wireless index b968c9f..e7a35b8 100644 --- a/rc.wireless +++ b/rc.wireless @@ -124,7 +124,7 @@ $IFCOMMAND up sleep 3 # Get the MAC address for the interface -HWADDR=$(/sbin/ifconfig ${INTERFACE} | sed -ne 's/.*\(..:..:..:..:..:..\).*/\U\1/p') +HWADDR=$(/sbin/ip link show dev ${INTERFACE} | sed -ne 's/.*link\/ether \(..:..:..:..:..:..\).*/\U\1/p') # Empty all wireless parameters- some of them could still be set for a previous interface: # when rc.inet1 is sourced from rc.M all scripts are run in the same shell. -- cgit v1.2.3