aboutsummaryrefslogtreecommitdiffstats
path: root/sysconfig/network-scripts/network-functions
diff options
context:
space:
mode:
authorBill Nottingham <notting@redhat.com>2000-10-04 15:20:17 +0000
committerBill Nottingham <notting@redhat.com>2000-10-04 15:20:17 +0000
commitda07f250aa6ee2d5ef587f18c4696f61f7676cc0 (patch)
tree5d9d4dda491d9e2b446939bc88ba84b13cb0084e /sysconfig/network-scripts/network-functions
parentd0107841fabc9d2bfe3639be3bdee9506f07c2e6 (diff)
downloadinitscripts-da07f250aa6ee2d5ef587f18c4696f61f7676cc0.tar
initscripts-da07f250aa6ee2d5ef587f18c4696f61f7676cc0.tar.gz
initscripts-da07f250aa6ee2d5ef587f18c4696f61f7676cc0.tar.bz2
initscripts-da07f250aa6ee2d5ef587f18c4696f61f7676cc0.tar.xz
initscripts-da07f250aa6ee2d5ef587f18c4696f61f7676cc0.zip
fix the grep for 'UP' so it doesn't report strange results on german PPP devices
Diffstat (limited to 'sysconfig/network-scripts/network-functions')
-rw-r--r--sysconfig/network-scripts/network-functions2
1 files changed, 1 insertions, 1 deletions
diff --git a/sysconfig/network-scripts/network-functions b/sysconfig/network-scripts/network-functions
index 7e542aaa..d4459a56 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 | grep UP >/dev/null 2>&1 ; then
+ if ifconfig ${DEVICE} 2>/dev/null | LANG=C grep " UP " >/dev/null 2>&1 ; then
retcode=1
else
retcode=0