aboutsummaryrefslogtreecommitdiff
path: root/etc/rc.d/routing
diff options
context:
space:
mode:
Diffstat (limited to 'etc/rc.d/routing')
-rwxr-xr-xetc/rc.d/routing33
1 files changed, 2 insertions, 31 deletions
diff --git a/etc/rc.d/routing b/etc/rc.d/routing
index 2a57fa3b1182..10cb48319a08 100755
--- a/etc/rc.d/routing
+++ b/etc/rc.d/routing
@@ -36,7 +36,7 @@ routing_start()
case $_af in
""|[Aa][Ll][Ll]|[Aa][Nn][Yy])
- for _a in inet inet6 atm; do
+ for _a in inet inet6; do
afexists $_a || continue
setroutes $_cmd $_a $_if || _ret=1
done
@@ -65,7 +65,7 @@ routing_stop()
case $_af in
""|[Aa][Ll][Ll]|[Aa][Nn][Yy])
- for _a in inet inet6 atm; do
+ for _a in inet inet6; do
afexists $_a || continue
eval static_${_a} delete $_if
# When $_if is specified, do not flush routes.
@@ -126,11 +126,6 @@ routing_stop_inet6()
done
}
-routing_stop_atm()
-{
- return 0
-}
-
get_fibmod()
{
local _fibs
@@ -289,23 +284,6 @@ static_inet6()
sysctl net.inet6.ip6.use_defaultzone=1
}
-static_atm()
-{
- local _action i route_args
- _action=$1
-
- if [ -n "${natm_static_routes}" ]; then
- for i in ${natm_static_routes}; do
- route_args=`get_if_var $i route_IF`
- if [ -n "$route_args" ]; then
- atmconfig natm ${_action} ${route_args}
- else
- warn "route_${i} not found."
- fi
- done
- fi
-}
-
ropts_init()
{
if [ -z "${_ropts_initdone}" ]; then
@@ -391,12 +369,5 @@ options_inet6()
[ -n "${_ropts_initdone}" ] && echo '.'
}
-options_atm()
-{
- _ropts_initdone=
-
- [ -n "${_ropts_initdone}" ] && echo '.'
-}
-
load_rc_config $name
run_rc_command "$@"