If ipv6_enable is set to yes, do IPv6 setup for PCCARD ethernet

card.  This is still at staring point and end node case only.
This commit is contained in:
Hajimu UMEMOTO 2000-07-17 12:33:57 +00:00
parent b74aa5644c
commit feeff03591

View File

@ -64,3 +64,17 @@ if [ -n "${static_routes}" ]; then
route add ${route_args}
done
fi
# IPv6 setup
case ${ipv6_enable} in
[Yy][Ee][Ss])
case ${ipv6_gateway_enable} in
[Yy][Ee][Ss])
;;
*)
ifconfig ${interface} up
rtsol ${interface}
;;
esac
;;
esac