diff options
author | nbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2012-03-15 09:49:33 +0000 |
---|---|---|
committer | nbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2012-03-15 09:49:33 +0000 |
commit | 53fcd523f986a9c92319654de73cf950a0e65c05 (patch) | |
tree | eb49ba004dc787510baa7de9d48f3f9557755c55 /package/6to4/files/6to4.hotplug | |
parent | 443820e37b48228ba986329f86ead6ce902a611b (diff) |
6to4: add netifd support
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@30949 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/6to4/files/6to4.hotplug')
-rw-r--r-- | package/6to4/files/6to4.hotplug | 13 |
1 files changed, 4 insertions, 9 deletions
diff --git a/package/6to4/files/6to4.hotplug b/package/6to4/files/6to4.hotplug index 1e3d26c418..202a3c737c 100644 --- a/package/6to4/files/6to4.hotplug +++ b/package/6to4/files/6to4.hotplug @@ -3,6 +3,9 @@ if [ "$ACTION" = ifup ]; then . /etc/functions.sh + INCLUDE_ONLY=1 + . /lib/netifd/proto/6to4.sh + include /lib/network scan_interfaces @@ -19,15 +22,7 @@ if [ "$ACTION" = ifup ]; then local wanip=$(find_6to4_wanip "$wandev") - [ -n "$wanip" ] && { - lsmod | grep -q ^sit || { - logger -t 6to4 "Tunneling driver not loaded yet, deferring action" - exit 0 - } - - uci_set_state network "$cfg" ipaddr "$wanip" - ( ifup "$cfg" )& - } + [ -n "$wanip" ] && ifup "$cfg" } config_foreach update_tunnel interface |