From 627c85848617976158d87542b8ed87100f171979 Mon Sep 17 00:00:00 2001 From: Bill Nottingham Date: Tue, 12 Dec 2000 05:26:37 +0000 Subject: oops, put the LANG=C in the right place --- rc.d/init.d/network | 2 +- sysconfig/network-scripts/network-functions | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/rc.d/init.d/network b/rc.d/init.d/network index 76b3c76c..b952bf74 100755 --- a/rc.d/init.d/network +++ b/rc.d/init.d/network @@ -93,7 +93,7 @@ case "$1" in fi for i in $interfaces ; do - if ifconfig $i 2>/dev/null | LANG=C grep -q " UP " >/dev/null 2>&1 ; then + if LANG=C ifconfig $i 2>/dev/null | grep -q " UP " >/dev/null 2>&1 ; then action "Shutting down interface $i: " ./ifdown $i boot fi done diff --git a/sysconfig/network-scripts/network-functions b/sysconfig/network-scripts/network-functions index 8b726a83..dd566ad6 100644 --- a/sysconfig/network-scripts/network-functions +++ b/sysconfig/network-scripts/network-functions @@ -50,7 +50,7 @@ set_hostname() check_device_down () { - if ifconfig ${DEVICE} 2>/dev/null | LANG=C grep " UP " >/dev/null 2>&1 ; then + if LANG=C ifconfig ${DEVICE} 2>/dev/null | grep " UP " >/dev/null 2>&1 ; then retcode=1 else retcode=0 -- cgit v1.2.1