From: Jonatan Schlag Date: Wed, 16 Aug 2017 07:02:47 +0000 (+0200) Subject: ipsec: accept also psk and use pre-shared-key instead of psk X-Git-Tag: 010~253 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6fe4b2fddbd01447b57c8a31aafae894e3dee92b;p=network.git ipsec: accept also psk and use pre-shared-key instead of psk Fixes: #11454 Signed-off-by: Jonatan Schlag Signed-off-by: Michael Tremer --- diff --git a/src/bash-completion/network b/src/bash-completion/network index 5ddc8db8..15bb9e8a 100644 --- a/src/bash-completion/network +++ b/src/bash-completion/network @@ -446,7 +446,7 @@ _network_vpn_ipsec_connection_subcommands_authentication() { shift local words=( $@ ) - local commands="psk mode" + local commands="mode pre-shared-key" local cmd="$(_network_find_on_cmdline "${commands}")" if [[ -z "${cmd}" ]]; then COMPREPLY=( $(compgen -W "${commands}" -- "${cur}") )