diff options
author | Bill Nottingham <notting@redhat.com> | 2009-07-31 18:26:01 -0400 |
---|---|---|
committer | Bill Nottingham <notting@redhat.com> | 2009-07-31 21:00:12 -0400 |
commit | dff38eba0c24eab360421883dfbd0e17f7b25243 (patch) | |
tree | 4b4d31a69a2bb72a04d8c6b4efebd11f3ef1532c /sysconfig/network-scripts | |
parent | 001c23816719b4c5ce90c23502881f96437be89c (diff) | |
download | initscripts-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/network-scripts')
-rw-r--r-- | sysconfig/network-scripts/network-functions-ipv6 | 10 |
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 } |