aboutsummaryrefslogtreecommitdiffstats
path: root/sysconfig/network-scripts/ifdown
diff options
context:
space:
mode:
authorBill Nottingham <notting@redhat.com>2003-06-24 04:13:19 +0000
committerBill Nottingham <notting@redhat.com>2003-06-24 04:13:19 +0000
commit9f38f0eeba5d63c36e910cde44b9bc59c2b5aba3 (patch)
treebb066f6179947d8bb583ca4e367faf723f3dc301 /sysconfig/network-scripts/ifdown
parent642f9be2bce629712adc76374f472f7e9f691361 (diff)
downloadinitscripts-9f38f0eeba5d63c36e910cde44b9bc59c2b5aba3.tar
initscripts-9f38f0eeba5d63c36e910cde44b9bc59c2b5aba3.tar.gz
initscripts-9f38f0eeba5d63c36e910cde44b9bc59c2b5aba3.tar.bz2
initscripts-9f38f0eeba5d63c36e910cde44b9bc59c2b5aba3.tar.xz
initscripts-9f38f0eeba5d63c36e910cde44b9bc59c2b5aba3.zip
more tweaks
- encapsulate grabing the hw addr into its own function - normalize case of all hwaddrs - if we are passed a device with no config, see if there's a config for that hwaddr
Diffstat (limited to 'sysconfig/network-scripts/ifdown')
-rwxr-xr-xsysconfig/network-scripts/ifdown5
1 files changed, 2 insertions, 3 deletions
diff --git a/sysconfig/network-scripts/ifdown b/sysconfig/network-scripts/ifdown
index 4e490f68..65ef52e1 100755
--- a/sysconfig/network-scripts/ifdown
+++ b/sysconfig/network-scripts/ifdown
@@ -50,10 +50,9 @@ fi
check_device_down ${DEVICE} && [ "$BOOTPROTO" != "dhcp" -a "$BOOTPROTO" != "bootp" ] && [ -n "$VLAN" -a "$VLAN" != "yes" ] && exit 0
if [ -n "${HWADDR}" ]; then
- FOUNDMACADDR=`LC_ALL= LANG= ip -o link show ${REALDEVICE} | \
- sed 's/.*link\/ether \([[:alnum:]:]*\).*/\1/'`
+ FOUNDMACADDR=`get_hwaddr ${REALDEVICE}`
if [ "${FOUNDMACADDR}" != "${HWADDR}" ]; then
- NEWCONFIG=`fgrep -l "HWADDR=${HWADDR}" /etc/sysconfig/network-scripts/ifcfg-*`
+ NEWCONFIG=`fgrep -il "HWADDR=${HWADDR}" /etc/sysconfig/network-scripts/ifcfg-*`
if [ -n "${NEWCONFIG}" -a "${NEWCONFIG}" != "${CONFIG}" ]; then
exec /sbin/ifdown ${NEWCONFIG}
else