From mboxrd@z Thu Jan 1 00:00:00 1970 From: Jonatan Schlag To: network@lists.ipfire.org Subject: [PATCH 2/2] bash-autocompletion: add basic security-policy support Date: Fri, 04 Aug 2017 10:32:13 +0200 Message-ID: <1501835533-5437-2-git-send-email-jonatan.schlag@ipfire.org> In-Reply-To: <1501835533-5437-1-git-send-email-jonatan.schlag@ipfire.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============6862783249207628764==" List-Id: --===============6862783249207628764== Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable Signed-off-by: Jonatan Schlag --- src/bash-completion/network | 92 +++++++++++++++++++++++++++++++++++++++++++= +- 1 file changed, 91 insertions(+), 1 deletion(-) diff --git a/src/bash-completion/network b/src/bash-completion/network index 5fd6191..668c699 100644 --- a/src/bash-completion/network +++ b/src/bash-completion/network @@ -343,7 +343,7 @@ _network_settings() { _network_vpn() { local words=3D( $@ ) =20 - local commands=3D"ipsec" + local commands=3D"ipsec security-policies" local cmd=3D"$(_network_find_on_cmdline "${commands}")" if [[ -z "${cmd}" ]]; then COMPREPLY=3D( $(compgen -W "${commands}" -- "${cur}") ) @@ -356,6 +356,9 @@ _network_vpn() { ipsec) _network_vpn_ipsec ${args} ;; + security-policies) + _network_vpn_security_policies ${args} + ;; esac } =20 @@ -520,6 +523,93 @@ _network_vpn_ipsec_connection_subcommands_security_polic= y() { fi } =20 +_network_vpn_security_policies() { + local words=3D( $@ ) + + local commands=3D"destroy new $(network raw list-vpn-security-policies-all)" + local cmd=3D"$(_network_find_on_cmdline "${commands}")" + if [[ -z "${cmd}" ]]; then + COMPREPLY=3D( $(compgen -W "${commands}" -- "${cur}") ) + return 0 + fi + + + local args=3D"${words[@]:1}" + case "${cmd}" in + destroy) + : + ;; + new) + : + ;; + *) + if network raw vpn-security-policy-exists ${cmd}; then + _network_vpn_security_policies_subcommands ${cmd} ${args} + fi + ;; + esac +} + +_network_vpn_security_policies_subcommands() { + local policy=3D${1} + shift + local words=3D( $@ ) + + local commands=3D"cipher compression group-type integrity key-exchange life= time pfs show" + local cmd=3D"$(_network_find_on_cmdline "${commands}")" + if [[ -z "${cmd}" ]]; then + COMPREPLY=3D( $(compgen -W "${commands}" -- "${cur}") ) + return 0 + fi + + + local args=3D"${words[@]:1}" + case "${cmd}" in + cipher) + _network_vpn_security_policies_subcommands_cipher ${policy} ${args} + ;; + compression) + _network_vpn_security_policies_subcommands_compression ${policy} ${args} + ;; + group-type) + _network_vpn_security_policies_subcommands_group_type ${policy} ${args} + ;; + integrity) + _network_vpn_security_policies_subcommands_integrity ${policy} ${args} + ;; + key-exchange) + _network_vpn_security_policies_subcommands_key_exchange ${policy} ${args} + ;; + pfs) + _network_vpn_security_policies_subcommands_pfs ${policy} ${args} + ;; + esac +} + +_network_vpn_security_policies_subcommands_cipher() { + : +} + +_network_vpn_security_policies_subcommands_compression() { + : +} + +_network_vpn_security_policies_subcommands_group_type() { + : +} + +_network_vpn_security_policies_subcommands_integrity() { + : +} + +_network_vpn_security_policies_subcommands_key_exchange() { + : +} + +_network_vpn_security_policies_subcommands_pfs() { + : +} + _network_zone() { local words=3D( $@ ) =20 --=20 2.6.3 --===============6862783249207628764==--