diff options
Diffstat (limited to 'net/ifconfig.sh.Linux.in')
-rw-r--r-- | net/ifconfig.sh.Linux.in | 23 |
1 files changed, 12 insertions, 11 deletions
diff --git a/net/ifconfig.sh.Linux.in b/net/ifconfig.sh.Linux.in index 4fd24602..ae68b2b6 100644 --- a/net/ifconfig.sh.Linux.in +++ b/net/ifconfig.sh.Linux.in @@ -261,6 +261,17 @@ _tunnel() ifconfig_pre_start() { + local tunnel= + eval tunnel=\$iptunnel_${IFVAR} + if [ -n "${tunnel}" ]; then + # Set our base metric to 1000 + metric=1000 + ebegin "Creating tunnel ${IFVAR}" + iptunnel add ${tunnel} + eend $? || return 1 + _up + fi + # MTU support local mtu= eval mtu=\$mtu_${IFVAR} @@ -271,17 +282,7 @@ ifconfig_pre_start() eval len=\$txqueuelen_${IFVAR} [ -n "${len}" ] && ifconfig "${IFACE}" txqueuelen "${len}" - local tunnel= - - eval tunnel=\$iptunnel_${IFVAR} - [ -z "${tunnel}" ] && return 0 - - # Set our base metric to 1000 - metric=1000 - - ebegin "Creating tunnel ${IFVAR}" - iptunnel add ${tunnel} - eend $? + return 0 } ifconfig_post_stop() |