Remove deprecated ip6slaac option
authorcyrus <cyrus@3c298f89-4303-0410-b956-a3cf2f4a3e73>
Tue, 9 Apr 2013 12:12:30 +0000 (12:12 +0000)
committercyrus <cyrus@3c298f89-4303-0410-b956-a3cf2f4a3e73>
Tue, 9 Apr 2013 12:12:30 +0000 (12:12 +0000)
* use proto=dhcpv6 with reqprefix=no instead

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@36280 3c298f89-4303-0410-b956-a3cf2f4a3e73

package/network/config/netifd/files/etc/hotplug.d/iface/10-ipv6-static [deleted file]

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 (file)
index d724894..0000000
+++ /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
-