diff options
author | Rui Salvaterra <rsalvaterra@gmail.com> | 2022-05-31 09:06:49 +0100 |
---|---|---|
committer | Rosen Penev <rosenp@gmail.com> | 2022-06-01 13:54:13 -0700 |
commit | a85bda72cce7ff638c2931e0f11e852995d84835 (patch) | |
tree | 3dd077c671b8034c0240c1a0ee4a2d061f53e4d6 /net/openconnect/files | |
parent | 278a35be9c5b82c53512c0ed63ff75ba7fe27425 (diff) |
openconnect: avoid using the --juniper switch
The --juniper switch has been deprecated in favour of --protocol=nc. Fix the
proto script thusly, while keeping compatibility with existing configurations.
Note that, as far as UCI is concerned, if both options juniper and vpn_protocol
are specified, the latter takes precedence.
Signed-off-by: Rui Salvaterra <rsalvaterra@gmail.com>
Diffstat (limited to 'net/openconnect/files')
-rwxr-xr-x | net/openconnect/files/openconnect.sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/net/openconnect/files/openconnect.sh b/net/openconnect/files/openconnect.sh index 58e44be93..e80cf969e 100755 --- a/net/openconnect/files/openconnect.sh +++ b/net/openconnect/files/openconnect.sh @@ -93,9 +93,9 @@ proto_openconnect_setup() { append_args --no-system-trust } - if [ "${juniper:-0}" -gt 0 ]; then - append_args --juniper - fi + [ "${juniper:-0}" -gt 0 ] && [ -z "$vpn_protocol" ] && { + vpn_protocol="nc" + } [ -n "$vpn_protocol" ] && { append_args --protocol "$vpn_protocol" |