[source] gre: Remove ttl default value assignment (FS#312)
LEDE Commits
lede-commits at lists.infradead.org
Sun Dec 25 12:01:35 PST 2016
dedeckeh pushed a commit to source.git, branch master:
https://git.lede-project.org/4c9d2c04bae3042007b1314785c0e35049e067d6
commit 4c9d2c04bae3042007b1314785c0e35049e067d6
Author: Hans Dedecker <dedeckeh at gmail.com>
AuthorDate: Fri Dec 23 16:29:34 2016 +0100
gre: Remove ttl default value assignment (FS#312)
Don't assign a default ttl of 64 for gre tunnels as
netifd takes care of the default ttl assignment
Signed-off-by: Hans Dedecker <dedeckeh at gmail.com>
---
package/network/config/gre/Makefile | 2 +-
package/network/config/gre/files/gre.sh | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/package/network/config/gre/Makefile b/package/network/config/gre/Makefile
index 4511620..a6b4cac 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:=4
+PKG_RELEASE:=5
PKG_LICENSE:=GPL-2.0
include $(INCLUDE_DIR)/package.mk
diff --git a/package/network/config/gre/files/gre.sh b/package/network/config/gre/files/gre.sh
index 3f472c4..58db1d1 100755
--- a/package/network/config/gre/files/gre.sh
+++ b/package/network/config/gre/files/gre.sh
@@ -25,7 +25,7 @@ gre_generic_setup() {
json_add_string mode "$mode"
json_add_int mtu "${mtu:-1280}"
[ -n "$df" ] && json_add_boolean df "$df"
- json_add_int ttl "${ttl:-64}"
+ [ -n "ttl" ] && json_add_int ttl "$ttl"
[ -n "$tos" ] && json_add_string tos "$tos"
json_add_boolean multicast "$multicast"
json_add_string local "$local"
More information about the lede-commits
mailing list