aboutsummaryrefslogtreecommitdiffstats
path: root/rc.d
diff options
context:
space:
mode:
authorBill Nottingham <notting@redhat.com>2012-04-20 14:33:30 -0400
committerBill Nottingham <notting@redhat.com>2012-04-20 14:33:30 -0400
commitfa2911a4dc5cc793f495b39d9c71bbcc29ff011b (patch)
treebb8300fcc33709c42dfb02522a8f54f6a514e0ad /rc.d
parentc1d21f7c44405f0fd8bf5d18e6465a49177c070b (diff)
downloadinitscripts-fa2911a4dc5cc793f495b39d9c71bbcc29ff011b.tar
initscripts-fa2911a4dc5cc793f495b39d9c71bbcc29ff011b.tar.gz
initscripts-fa2911a4dc5cc793f495b39d9c71bbcc29ff011b.tar.bz2
initscripts-fa2911a4dc5cc793f495b39d9c71bbcc29ff011b.tar.xz
initscripts-fa2911a4dc5cc793f495b39d9c71bbcc29ff011b.zip
Drop net-tools requirement; check for /sbin/route before calling legacy static-route support. (#682308)
Diffstat (limited to 'rc.d')
-rwxr-xr-xrc.d/init.d/network10
1 files changed, 7 insertions, 3 deletions
diff --git a/rc.d/init.d/network b/rc.d/init.d/network
index fe9476d7..c38381a3 100755
--- a/rc.d/init.d/network
+++ b/rc.d/init.d/network
@@ -154,9 +154,13 @@ case "$1" in
# Add non interface-specific static-routes.
if [ -f /etc/sysconfig/static-routes ]; then
- grep "^any" /etc/sysconfig/static-routes | while read ignore args ; do
- /sbin/route add -$args
- done
+ if [ -x /sbin/route ]; then
+ grep "^any" /etc/sysconfig/static-routes | while read ignore args ; do
+ /sbin/route add -$args
+ done
+ else
+ net_log $"Legacy static-route support not available: route not found"
+ fi
fi
# IPv6 hook (post IPv4 start)