diff options
Diffstat (limited to 'clients/cli/nmcli-completion')
-rw-r--r-- | clients/cli/nmcli-completion | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/clients/cli/nmcli-completion b/clients/cli/nmcli-completion index 1e087f7419..72648d43cb 100644 --- a/clients/cli/nmcli-completion +++ b/clients/cli/nmcli-completion @@ -701,7 +701,7 @@ _nmcli() # (if the current word starts with a dash) or the OBJECT list # otherwise. if [[ "${words[0]:0:1}" != '-' ]]; then - OPTIONS=(help general networking radio connection device) + OPTIONS=(help general networking radio connection device agent) elif [[ "${words[0]:1:1}" == '-' || "${words[0]}" == "-" ]]; then OPTIONS=("${LONG_OPTIONS[@]/#/--}") else @@ -1268,6 +1268,11 @@ _nmcli() esac fi ;; + a|ag|age|agen|agent) + if [[ ${#words[@]} -eq 2 ]]; then + _nmcli_compl_COMMAND "$command" secret polkit all + fi + ;; esac return 0 |