aboutsummaryrefslogtreecommitdiffstats
path: root/package/network/config/xfrm/files
diff options
context:
space:
mode:
authorAndré Valentin <avalentin@marcant.net>2019-06-14 13:09:47 +0200
committerHans Dedecker <dedeckeh@gmail.com>2019-06-15 13:41:39 +0200
commitf6dab9804413139c3bd2647a81652d04baa1e59d (patch)
tree4c6bdb18a09951877656c533cccf59f17820e352 /package/network/config/xfrm/files
parent62be427067ee3883b68bcfb08dfc0c43dce22fa3 (diff)
downloadupstream-f6dab9804413139c3bd2647a81652d04baa1e59d.tar.gz
upstream-f6dab9804413139c3bd2647a81652d04baa1e59d.tar.bz2
upstream-f6dab9804413139c3bd2647a81652d04baa1e59d.zip
network/config/xfrm: add host-dependency for xfrm interface parent
Add proto_add_host_dependency to add a dependency to the tunlink interface Signed-off-by: André Valentin <avalentin@marcant.net> Signed-off-by: Hans Dedecker <dedeckeh@gmail.com> [PKG_RELEASE increase]
Diffstat (limited to 'package/network/config/xfrm/files')
-rwxr-xr-xpackage/network/config/xfrm/files/xfrm.sh18
1 files changed, 11 insertions, 7 deletions
diff --git a/package/network/config/xfrm/files/xfrm.sh b/package/network/config/xfrm/files/xfrm.sh
index df28d38613..1bd1958726 100755
--- a/package/network/config/xfrm/files/xfrm.sh
+++ b/package/network/config/xfrm/files/xfrm.sh
@@ -14,24 +14,28 @@ proto_xfrm_setup() {
local tunlink ifid mtu zone
json_get_vars tunlink ifid mtu zone
- proto_init_update "$cfg" 1
-
- proto_add_tunnel
- json_add_string mode "$mode"
- json_add_int mtu "${mtu:-1280}"
-
[ -z "$tunlink" ] && {
proto_notify_error "$cfg" NO_TUNLINK
proto_block_restart "$cfg"
exit
}
- json_add_string link "$tunlink"
[ -z "$ifid" ] && {
proto_notify_error "$cfg" NO_IFID
proto_block_restart "$cfg"
exit
}
+
+ ( proto_add_host_dependency "$cfg" '' "$tunlink" )
+
+ proto_init_update "$cfg" 1
+
+ proto_add_tunnel
+ json_add_string mode "$mode"
+ json_add_int mtu "${mtu:-1280}"
+
+ json_add_string link "$tunlink"
+
json_add_object 'data'
[ -n "$ifid" ] && json_add_int ifid "$ifid"
json_close_object