aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBill Nottingham <notting@redhat.com>2001-07-16 18:42:27 +0000
committerBill Nottingham <notting@redhat.com>2001-07-16 18:42:27 +0000
commit1232e44021ec9cee1bede0107a85e3081443b7c6 (patch)
treebd88d77dbce7ccaba456947bda69984f5800f4e2
parent196a77dbd38d11f22cd9960d943d572da3a5a843 (diff)
downloadinitscripts-1232e44021ec9cee1bede0107a85e3081443b7c6.tar
initscripts-1232e44021ec9cee1bede0107a85e3081443b7c6.tar.gz
initscripts-1232e44021ec9cee1bede0107a85e3081443b7c6.tar.bz2
initscripts-1232e44021ec9cee1bede0107a85e3081443b7c6.tar.xz
initscripts-1232e44021ec9cee1bede0107a85e3081443b7c6.zip
fix do_netreport to work for the non-root case
-rw-r--r--sysconfig/network-scripts/network-functions7
1 files changed, 6 insertions, 1 deletions
diff --git a/sysconfig/network-scripts/network-functions b/sysconfig/network-scripts/network-functions
index 323701fc..47be1b84 100644
--- a/sysconfig/network-scripts/network-functions
+++ b/sysconfig/network-scripts/network-functions
@@ -38,8 +38,13 @@ do_netreport ()
for i in * ; do
if [ -f $i ]; then
OWNER=`ls -l $i | awk '{ print $3 }'`
- su $OWNER -c "kill -SIGIO $i >/dev/null 2>&1 || rm -f $i >/dev/null 2>&1" > /dev/null 2>&1
+
+ if [ "`id -u`" = "0" ]; then
+ su $OWNER -c "kill -SIGIO $i >/dev/null 2>&1 || rm -f $i >/dev/null 2>&1" > /dev/null 2>&1
+ else
+ kill -SIGIO $i >/dev/null 2>&1 || rm -f $i >/dev/null 2>&1
fi
+ fi
done
)
}