aboutsummaryrefslogtreecommitdiffstats
path: root/sysconfig
diff options
context:
space:
mode:
authorBill Nottingham <notting@redhat.com>2009-07-31 18:26:01 -0400
committerBill Nottingham <notting@redhat.com>2009-07-31 21:00:12 -0400
commitdff38eba0c24eab360421883dfbd0e17f7b25243 (patch)
tree4b4d31a69a2bb72a04d8c6b4efebd11f3ef1532c /sysconfig
parent001c23816719b4c5ce90c23502881f96437be89c (diff)
downloadinitscripts-dff38eba0c24eab360421883dfbd0e17f7b25243.tar
initscripts-dff38eba0c24eab360421883dfbd0e17f7b25243.tar.gz
initscripts-dff38eba0c24eab360421883dfbd0e17f7b25243.tar.bz2
initscripts-dff38eba0c24eab360421883dfbd0e17f7b25243.tar.xz
initscripts-dff38eba0c24eab360421883dfbd0e17f7b25243.zip
Don't bother checking for /sbin/ip or /sbin/sysctl.
They're required by the package for a reason.
Diffstat (limited to 'sysconfig')
-rw-r--r--sysconfig/network-scripts/network-functions-ipv610
1 files changed, 0 insertions, 10 deletions
diff --git a/sysconfig/network-scripts/network-functions-ipv6 b/sysconfig/network-scripts/network-functions-ipv6
index cd8a380f..b7531a64 100644
--- a/sysconfig/network-scripts/network-functions-ipv6
+++ b/sysconfig/network-scripts/network-functions-ipv6
@@ -188,16 +188,6 @@ ipv6_test() {
return 2
fi
- if ! [ -x /sbin/ip ]; then
- ipv6_log $"Utility 'ip' (package: iproute) doesn't exist or isn't executable - stop" crit $fn
- return 2
- fi
-
- if ! [ -x /sbin/sysctl ]; then
- ipv6_log $"Utility 'sysctl' (package: procps) doesn't exist or isn't executable - stop" crit $fn
- return 2
- fi
-
return 0
}