summaryrefslogtreecommitdiffstats
path: root/package/6to4/files/6to4.hotplug
diff options
context:
space:
mode:
Diffstat (limited to 'package/6to4/files/6to4.hotplug')
-rw-r--r--package/6to4/files/6to4.hotplug5
1 files changed, 5 insertions, 0 deletions
diff --git a/package/6to4/files/6to4.hotplug b/package/6to4/files/6to4.hotplug
index 037abd48f..1e3d26c41 100644
--- a/package/6to4/files/6to4.hotplug
+++ b/package/6to4/files/6to4.hotplug
@@ -20,6 +20,11 @@ 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" )&
}