aboutsummaryrefslogtreecommitdiff
path: root/net/openconnect/files
diff options
context:
space:
mode:
authorFlorian Fainelli <florian@openwrt.org>2015-04-04 12:32:59 -0700
committerFlorian Fainelli <florian@openwrt.org>2015-04-04 12:32:59 -0700
commitb1f228f4cf0b9871c0d7d009c0e97a40ddb9d629 (patch)
treef89442773fe1995bd53a91403b64e575a1925d85 /net/openconnect/files
parent70c10c0a5e80a53a2090698730033d91da98cd1c (diff)
openconnect: allow specifying a custom CSD wrapper script
Some VPN servers might be configured in a way that a CSD wrapper script is mandatory to complete the authentication process, allow that to be specified for openconnect. Signed-off-by: Florian Fainelli <florian@openwrt.org>
Diffstat (limited to 'net/openconnect/files')
-rwxr-xr-xnet/openconnect/files/openconnect.sh4
1 files changed, 3 insertions, 1 deletions
diff --git a/net/openconnect/files/openconnect.sh b/net/openconnect/files/openconnect.sh
index 87c42acc3..0e22e1b60 100755
--- a/net/openconnect/files/openconnect.sh
+++ b/net/openconnect/files/openconnect.sh
@@ -14,6 +14,7 @@ proto_openconnect_init_config() {
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
available=1
}
@@ -21,7 +22,7 @@ proto_openconnect_init_config() {
proto_openconnect_setup() {
local config="$1"
- json_get_vars server port username serverhash authgroup password interface token_mode token_secret os
+ json_get_vars server port username serverhash authgroup password interface token_mode token_secret os csd_wrapper
grep -q tun /proc/modules || insmod tun
@@ -70,6 +71,7 @@ proto_openconnect_setup() {
[ -n "$token_mode" ] && append cmdline "--token-mode=$token_mode"
[ -n "$token_secret" ] && append cmdline "--token-secret=$token_secret"
[ -n "$os" ] && append cmdline "--os=$os"
+ [ -n "$csd_wrapper" ] && [ -x "$csd_wrapper" ] && append cmdline "--csd-wrapper=$csd_wrapper"
proto_export INTERFACE="$config"
logger -t openconnect "executing 'openconnect $cmdline'"