5c5 < MODULESDIR="${RC_LIBEXECDIR}/net" --- > MODULESDIR="/lib/netifrc/net" 119d118 < sleep 1 124a124 > sleep 1 153a154,156 > case $i in > 0x*) i=$((i)) ;; > esac 636c639 < local hidefirstroute=false first=true routes= --- > local hideFirstroute=false first=true routes= 647c650 < hidefirstroute=true --- > hideFirstroute=true 652a656 > local fam 658a663,668 > > case ${cmd} in > -6" "*) fam="-6"; cmd=${cmd#-6 };; > -4" "*) fam="-4"; cmd=${cmd#-4 };; > esac > 667a678,679 > *:*/128*) cmd="-host ${cmd}";; > *:*/*) cmd="-net ${cmd}";; 670,672c682,684 < if ${hidefirstroute}; then < _add_route ${cmd} >/dev/null 2>&1 < hidefirstroute=false --- > if ${hideFirstroute}; then > _add_route ${fam} ${cmd} >/dev/null 2>&1 > hideFirstroute=false 674c686 < _add_route ${cmd} >/dev/null --- > _add_route ${fam} ${cmd} >/dev/null 702a715,719 > # Don't stop the network at shutdown. > # We don't use the noshutdown keyword so that we are started again > # correctly if we go back to multiuser. > yesno ${keep_network:-YES} && yesno $RC_GOINGDOWN && return 0 >