From 132b726e958e2677983d4d4a95f1a86d80e9852e Mon Sep 17 00:00:00 2001 From: Steven Barth Date: Tue, 13 Jan 2015 19:00:39 +0000 Subject: map: export calculated ruleset to /tmp Signed-off-by: Steven Barth git-svn-id: svn://svn.openwrt.org/openwrt/trunk@43961 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- package/network/ipv6/map/Makefile | 2 +- package/network/ipv6/map/files/map.sh | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) (limited to 'package/network/ipv6') diff --git a/package/network/ipv6/map/Makefile b/package/network/ipv6/map/Makefile index 2848fe9ea2..ed358defac 100644 --- a/package/network/ipv6/map/Makefile +++ b/package/network/ipv6/map/Makefile @@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=map PKG_VERSION:=3 -PKG_RELEASE:=1 +PKG_RELEASE:=2 PKG_LICENSE:=GPL-2.0 include $(INCLUDE_DIR)/package.mk diff --git a/package/network/ipv6/map/files/map.sh b/package/network/ipv6/map/files/map.sh index 83de4cc4dc..945accdebd 100755 --- a/package/network/ipv6/map/files/map.sh +++ b/package/network/ipv6/map/files/map.sh @@ -52,6 +52,7 @@ proto_map_setup() { fi fi + echo "rule=$rule" > /tmp/map-$cfg.rules RULE_DATA=$(mapcalc ${tunlink:-\*} $rule) if [ "$?" != 0 ]; then proto_notify_error "$cfg" "INVALID_MAP_RULE" @@ -59,6 +60,7 @@ proto_map_setup() { return fi + echo "$RULE_DATA" >> /tmp/map-$cfg.rules eval $RULE_DATA if [ -z "$RULE_BMR" ]; then @@ -188,6 +190,7 @@ proto_map_setup() { proto_map_teardown() { local cfg="$1" ifdown "${cfg}_local" + rm -f /tmp/map-$cfg.rules } proto_map_init_config() { -- cgit v1.2.3