From: Steven Barth <cyrus@openwrt.org>
Date: Tue, 9 Apr 2013 12:12:30 +0000 (+0000)
Subject: Remove deprecated ip6slaac option * use proto=dhcpv6 with reqprefix=no instead
X-Git-Url: http://git.cdn.openwrt.org/?a=commitdiff_plain;h=3abc91552264757680134b2be9f2f870c77aabcc;p=openwrt%2Fstaging%2Fzorun.git

Remove deprecated ip6slaac option * use proto=dhcpv6 with reqprefix=no instead

SVN-Revision: 36280
---

diff --git a/package/network/config/netifd/files/etc/hotplug.d/iface/10-ipv6-static b/package/network/config/netifd/files/etc/hotplug.d/iface/10-ipv6-static
deleted file mode 100644
index d7248948e6..0000000000
--- a/package/network/config/netifd/files/etc/hotplug.d/iface/10-ipv6-static
+++ /dev/null
@@ -1,19 +0,0 @@
-case "$ACTION" in
-	ifup)
-		. /lib/functions.sh
-
-		local proto ip6slaac
-		config_load network
-		config_get proto "$INTERFACE" proto
-		config_get_bool ip6slaac "$INTERFACE" ip6slaac
-
-		if [ "$proto" = "static" -a "$ip6slaac" = "1" ]; then
-			echo 2 > "/proc/sys/net/ipv6/conf/$DEVICE/accept_ra"
-
-			# Though this should be save here, it is not recommended
-			echo 1 > "/proc/sys/net/ipv6/conf/$DEVICE/disable_ipv6"
-			echo 0 > "/proc/sys/net/ipv6/conf/$DEVICE/disable_ipv6"
-		fi
-	;;
-esac
-