aboutsummaryrefslogtreecommitdiffstats
path: root/rc.d/init.d/network
diff options
context:
space:
mode:
Diffstat (limited to 'rc.d/init.d/network')
-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)