From: Michael Tremer <michael.tremer@ipfire.org>
To: network@lists.ipfire.org
Subject: Re: [PATCH 2/2] ipsec: also show only valid options in the autocompletion
Date: Thu, 07 Sep 2017 20:45:51 +0100 [thread overview]
Message-ID: <1504813551.18494.15.camel@ipfire.org> (raw)
In-Reply-To: <1503934373-8996-2-git-send-email-jonatan.schlag@ipfire.org>
[-- Attachment #1: Type: text/plain, Size: 2556 bytes --]
Hi,
technically this work, but is it not better to have a command that checks what
type a connection is (rw or n2n) and then the right list of commands will be
selected?
I think that is cleaner instead of heaving some auto-completion stuff in the
main library.
Best,
-Michael
On Mon, 2017-08-28 at 17:32 +0200, Jonatan Schlag wrote:
> The options for the different types of connections should be also printed
> correctly when we use autocompletion
>
> Signed-off-by: Jonatan Schlag <jonatan.schlag(a)ipfire.org>
> ---
> src/bash-completion/network | 17 ++++++++++++++++-
> src/network | 3 +++
> 2 files changed, 19 insertions(+), 1 deletion(-)
>
> diff --git a/src/bash-completion/network b/src/bash-completion/network
> index 71bf245..25cf6aa 100644
> --- a/src/bash-completion/network
> +++ b/src/bash-completion/network
> @@ -413,7 +413,7 @@ _network_vpn_ipsec_connection_subcommands() {
> shift
> local words=( $@ )
>
> - local commands="authentication color description down inactivity-
> timeout local mode peer remote security-policy show up"
> + local commands="$(network raw list-valid-ipsec-options
> "${connection}" "first")"
> local cmd="$(_network_find_on_cmdline "${commands}")"
> if [[ -z "${cmd}" ]]; then
> COMPREPLY=( $(compgen -W "${commands}" -- "${cur}") )
> @@ -432,6 +432,9 @@ _network_vpn_ipsec_connection_subcommands() {
> description)
> _network_description ${args}
> ;;
> + dpd)
> + _network_vpn_ipsec_connection_subcommands_dpd
> "${connection}" ${args}
> + ;;
> local)
> _network_vpn_ipsec_connection_subcommands_local_remot
> e ${connection} "local" ${args}
> ;;
> @@ -529,6 +532,18 @@
> _network_vpn_ipsec_connection_subcommands_security_policy() {
> fi
> }
>
> +_network_vpn_ipsec_connection_subcommands_dpd() {
> + local connection=${1}
> + shift
> + local words=( $@ )
> +
> + local commands="$(network raw list-valid-ipsec-options
> "${connection}" "dpd")"
> + local cmd="$(_network_find_on_cmdline "${commands}")"
> + if [[ -z "${cmd}" ]]; then
> + COMPREPLY=( $(compgen -W "${commands}" -- "${cur}") )
> + return 0
> + fi
> +}
> _network_vpn_security_policies() {
> local words=( $@ )
>
> diff --git a/src/network b/src/network
> index 9a2d480..379a71d 100644
> --- a/src/network
> +++ b/src/network
> @@ -1334,6 +1334,9 @@ cli_raw() {
> list-next-free-zones)
> zones_get_next_free
> ;;
> + list-valid-ipsec-options)
> + ipsec_get_valid_options "$@"
> + ;;
> list-zone-config-ids)
> zone_config_list_ids "$@"
> ;;
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]
next prev parent reply other threads:[~2017-09-07 19:45 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-08-28 15:32 [PATCH 1/2] ipsec: only accept valid options for a connection type Jonatan Schlag
2017-08-28 15:32 ` [PATCH 2/2] ipsec: also show only valid options in the autocompletion Jonatan Schlag
2017-09-07 19:45 ` Michael Tremer [this message]
2017-09-07 19:44 ` [PATCH 1/2] ipsec: only accept valid options for a connection type Michael Tremer
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1504813551.18494.15.camel@ipfire.org \
--to=michael.tremer@ipfire.org \
--cc=network@lists.ipfire.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox