From 6c09f2a45c5541e9c207d14fc7aa21a4a0066bde Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sat, 4 May 2024 03:03:19 +0200 Subject: Merging upstream version 1:2.12.0. Signed-off-by: Daniel Baumann --- completions/ifup | 31 ++++++++++++++++--------------- 1 file changed, 16 insertions(+), 15 deletions(-) (limited to 'completions/ifup') diff --git a/completions/ifup b/completions/ifup index 5b35bfb..bfeee82 100644 --- a/completions/ifup +++ b/completions/ifup @@ -1,39 +1,40 @@ # Red Hat & Debian GNU/Linux if{up,down} completion -*- shell-script -*- -_userland GNU || return 1 +_comp_userland GNU || return 1 -_ifupdown() +_comp_cmd_ifupdown() { - local cur prev words cword - _init_completion || return + local cur prev words cword comp_args + _comp_initialize -- "$@" || return + local noargopts='!(-*|*[Xoi]*)' + # shellcheck disable=SC2254 case $prev in - --help | --version | --allow | --exclude | --option | -!(-*)[hVXo]) + --help | --version | --allow | --exclude | --option | -${noargopts}[hVXo]) return ;; - --interfaces | -!(-*)i) - _filedir + --interfaces | -${noargopts}i) + _comp_compgen_filedir return ;; --state-dir) - _filedir -d + _comp_compgen_filedir -d return ;; esac if [[ $cur == -* ]]; then - COMPREPLY=($(compgen -W '$(_parse_help "$1")' -- "$cur")) + _comp_compgen_help return fi - local args - _count_args "" "@(--allow|-i|--interfaces|--state-dir|-X|--exclude|-o)" + local REPLY + _comp_count_args -a "@(--allow|-i|--interfaces|--state-dir|-X|--exclude|-o)" - if ((args == 1)); then - _configured_interfaces - COMPREPLY=($(compgen -W '${COMPREPLY[@]}' -- "$cur")) + if ((REPLY == 1)); then + _comp_compgen_configured_interfaces fi } && - complete -F _ifupdown ifup ifdown ifquery ifstatus + complete -F _comp_cmd_ifupdown ifup ifdown ifquery ifstatus # ex: filetype=sh -- cgit v1.2.3