diff options
author | Steven Barth <cyrus@openwrt.org> | 2014-08-05 09:57:55 +0000 |
---|---|---|
committer | Steven Barth <cyrus@openwrt.org> | 2014-08-05 09:57:55 +0000 |
commit | bc0acb9db9548ac6f330de78b8dc17c966716d8d (patch) | |
tree | ced3a1c9c5ae63b6b7fca2534aba5255fd86484e /package/network | |
parent | 30ec58a2176f579c45b9dce8a2584546aff3fcf5 (diff) | |
download | upstream-bc0acb9db9548ac6f330de78b8dc17c966716d8d.tar.gz upstream-bc0acb9db9548ac6f330de78b8dc17c966716d8d.tar.bz2 upstream-bc0acb9db9548ac6f330de78b8dc17c966716d8d.zip |
gre: Change hostdependcy to remote endpoint tunnel address
Depend on the GRE tunnel peeraddr to trigger setup of the tunnel interface.
Addresses the issue reported in https://lists.openwrt.org/pipermail/openwrt-devel/2014-August/027201.html
Signed-off-by: Hans Dedecker <dedeckeh@gmail.com>
SVN-Revision: 41998
Diffstat (limited to 'package/network')
-rw-r--r-- | package/network/config/gre/Makefile | 2 | ||||
-rwxr-xr-x | package/network/config/gre/files/gre.sh | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/package/network/config/gre/Makefile b/package/network/config/gre/Makefile index efca4643d5..9f5135e5a5 100644 --- a/package/network/config/gre/Makefile +++ b/package/network/config/gre/Makefile @@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=gre PKG_VERSION:=1 -PKG_RELEASE:=1 +PKG_RELEASE:=2 include $(INCLUDE_DIR)/package.mk diff --git a/package/network/config/gre/files/gre.sh b/package/network/config/gre/files/gre.sh index 38c0fc4841..1728b01fcc 100755 --- a/package/network/config/gre/files/gre.sh +++ b/package/network/config/gre/files/gre.sh @@ -51,7 +51,7 @@ gre_setup() { exit } - ( proto_add_host_dependency "$cfg" "0.0.0.0" "$tunlink" ) + ( proto_add_host_dependency "$cfg" "$peeraddr" "$tunlink" ) [ -z "$ipaddr" ] && { local wanif="$tunlink" @@ -108,7 +108,7 @@ grev6_setup() { exit } - ( proto_add_host_dependency "$cfg" "::" "$tunlink" ) + ( proto_add_host_dependency "$cfg" "$peer6addr" "$tunlink" ) [ -z "$ip6addr" ] && { local wanif="$tunlink" |