diff options
author | Yousong Zhou <yszhou4tech@gmail.com> | 2017-05-08 13:06:10 +0800 |
---|---|---|
committer | Nikos Mavrogiannopoulos <nmav@gnutls.org> | 2017-06-18 13:10:34 +0200 |
commit | 4b3fde326c796f6a4f206edf6ed1dc4adf4223ea (patch) | |
tree | 85202f306b5448b57b1fab67b3622f36fe242074 /net/openconnect | |
parent | 105cf35455d61b6bc5b650d23920c012614a32a0 (diff) |
openconnect: drop stale config: interface
It was introduced with 41f8d5465 ("openconnect: fix a couple of minor
things and add an interface option") and not needed since 4083de9d7
("openconnect: use proto_add_host_dependency")
Signed-off-by: Yousong Zhou <yszhou4tech@gmail.com>
Diffstat (limited to 'net/openconnect')
-rw-r--r-- | net/openconnect/Makefile | 2 | ||||
-rwxr-xr-x | net/openconnect/files/openconnect.sh | 3 |
2 files changed, 2 insertions, 3 deletions
diff --git a/net/openconnect/Makefile b/net/openconnect/Makefile index 311be632b..ea4f3ab4e 100644 --- a/net/openconnect/Makefile +++ b/net/openconnect/Makefile @@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=openconnect PKG_VERSION:=7.08 -PKG_RELEASE:=1 +PKG_RELEASE:=2 PKG_USE_MIPS16:=0 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz diff --git a/net/openconnect/files/openconnect.sh b/net/openconnect/files/openconnect.sh index 881baccf1..4fd397894 100755 --- a/net/openconnect/files/openconnect.sh +++ b/net/openconnect/files/openconnect.sh @@ -13,7 +13,6 @@ proto_openconnect_init_config() { proto_config_add_string "password2" proto_config_add_string "token_mode" proto_config_add_string "token_secret" - proto_config_add_string "interface" proto_config_add_string "os" proto_config_add_string "csd_wrapper" no_device=1 @@ -23,7 +22,7 @@ proto_openconnect_init_config() { proto_openconnect_setup() { local config="$1" - json_get_vars server port username serverhash authgroup password password2 interface token_mode token_secret os csd_wrapper + json_get_vars server port username serverhash authgroup password password2 token_mode token_secret os csd_wrapper grep -q tun /proc/modules || insmod tun ifname="vpn-$config" |