diff options
author | Steven Barth <cyrus@openwrt.org> | 2014-10-08 15:16:19 +0000 |
---|---|---|
committer | Steven Barth <cyrus@openwrt.org> | 2014-10-08 15:16:19 +0000 |
commit | c7a941cf0231384ce769281e9e8f93065675fa08 (patch) | |
tree | 2a324d29477f4eee7e359c8f7ef7df6ce02292bd /package/network/ipv6 | |
parent | 8609ca69e0ec06f62e73f1c7115ac9717ea0a96e (diff) | |
download | upstream-c7a941cf0231384ce769281e9e8f93065675fa08.tar.gz upstream-c7a941cf0231384ce769281e9e8f93065675fa08.tar.bz2 upstream-c7a941cf0231384ce769281e9e8f93065675fa08.zip |
odhcp6c: don't assign addresses or prefixes prematurely
SVN-Revision: 42850
Diffstat (limited to 'package/network/ipv6')
-rw-r--r-- | package/network/ipv6/odhcp6c/Makefile | 4 | ||||
-rwxr-xr-x | package/network/ipv6/odhcp6c/files/dhcpv6.script | 3 |
2 files changed, 5 insertions, 2 deletions
diff --git a/package/network/ipv6/odhcp6c/Makefile b/package/network/ipv6/odhcp6c/Makefile index 52d41a8d30..6ebfe4ee17 100644 --- a/package/network/ipv6/odhcp6c/Makefile +++ b/package/network/ipv6/odhcp6c/Makefile @@ -8,14 +8,14 @@ include $(TOPDIR)/rules.mk PKG_NAME:=odhcp6c -PKG_VERSION:=2014-10-08 +PKG_VERSION:=2014-10-08.1 PKG_RELEASE=$(PKG_SOURCE_VERSION) PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2 PKG_SOURCE_SUBDIR:=$(PKG_NAME)-$(PKG_VERSION) PKG_SOURCE_URL:=git://github.com/sbyx/odhcp6c.git PKG_SOURCE_PROTO:=git -PKG_SOURCE_VERSION:=6373af63310f32e1408a81f4e4e069a5f0d3e59e +PKG_SOURCE_VERSION:=569a7bbe8a181b0e48cb12c751988406de3d7f0b PKG_MAINTAINER:=Steven Barth <steven@midlink.org> include $(INCLUDE_DIR)/package.mk diff --git a/package/network/ipv6/odhcp6c/files/dhcpv6.script b/package/network/ipv6/odhcp6c/files/dhcpv6.script index 37e67bfe52..0fedaaa1cd 100755 --- a/package/network/ipv6/odhcp6c/files/dhcpv6.script +++ b/package/network/ipv6/odhcp6c/files/dhcpv6.script @@ -158,6 +158,9 @@ case "$2" in informed|updated|rebound|ra-updated) setup_interface "$1" ;; + ra-updated) + [ -n "$ADDRESSES$RA_ADDRESSES$PREFIXES$USERPREFIX" ] && setup_interface "$1" + ;; started|stopped|unbound) teardown_interface "$1" ;; |