diff options
Diffstat (limited to 'net.Linux/ip6to4.sh')
| -rw-r--r-- | net.Linux/ip6to4.sh | 5 | 
1 files changed, 3 insertions, 2 deletions
| diff --git a/net.Linux/ip6to4.sh b/net.Linux/ip6to4.sh index 54cbe8ae..a4a477a3 100644 --- a/net.Linux/ip6to4.sh +++ b/net.Linux/ip6to4.sh @@ -96,8 +96,9 @@ ip6to4_start() {  	config_index=$((${config_index} - 1))  	# Add a route for us, ensuring we don't delete anything else -	eval $(_get_array "routes_${IFVAR}") -	eval routes_${IFVAR}="\"$@ '2003::/3 via ::${relay} metric 2147483647'\"" +	local routes="$(_get_array "routes_${IFVAR}") +2003::/3 via ::${relay} metric 2147483647" +	eval routes_${IFVAR}=\$routes  }  # vim: set ts=4 : | 
