1
0
Fork 0
mirror of git://git.code.sf.net/p/zsh/code synced 2025-09-08 12:01:21 +02:00

48619: complete inventory plugins in assignments to ANSIBLE_INVENTORY_ENABLED

This commit is contained in:
Oliver Kiddle 2021-04-19 23:07:51 +02:00
parent d01d0a1289
commit 79258d090c
2 changed files with 10 additions and 7 deletions

View file

@ -1,5 +1,8 @@
2021-04-19 Oliver Kiddle <opk@zsh.org> 2021-04-19 Oliver Kiddle <opk@zsh.org>
* 48619: Completion/Unix/Command/_ansible: complete inventory
plugins in assignments to ANSIBLE_INVENTORY_ENABLED
* 48618: Completion/Unix/Command/_date, * 48618: Completion/Unix/Command/_date,
Completion/Unix/Command/_grep, Completion/Unix/Command/_netstat, Completion/Unix/Command/_grep, Completion/Unix/Command/_netstat,
Completion/Unix/Command/_ping, Completion/Unix/Command/_readelf, Completion/Unix/Command/_ping, Completion/Unix/Command/_readelf,

View file

@ -1,4 +1,4 @@
#compdef ansible ansible-config ansible-console ansible-doc ansible-galaxy ansible-inventory ansible-playbook ansible-pull ansible-vault -value-,ANSIBLE_STDOUT_CALLBACK,-default- #compdef ansible ansible-config ansible-console ansible-doc ansible-galaxy ansible-inventory ansible-playbook ansible-pull ansible-vault -value-,ANSIBLE_STDOUT_CALLBACK,-default- -value-,ANSIBLE_INVENTORY_ENABLED,-default-
local curcontext="$curcontext" plug plugvar subcmd ign ret=1 local curcontext="$curcontext" plug plugvar subcmd ign ret=1
local -a args state line expl gactions local -a args state line expl gactions
@ -9,6 +9,10 @@ case $service in
plug=callback plug=callback
state=plugins state=plugins
;; ;;
*,ANSIBLE_INVENTORY_ENABLED,*)
plug=inventory
state=plugins
;;
ansible|ansible-console|ansible-doc|ansible-playbook) ansible|ansible-console|ansible-doc|ansible-playbook)
args=( args=(
\*{-M+,--module-path=}'[specify path to modules]:module path:_dir_list' \*{-M+,--module-path=}'[specify path to modules]:module path:_dir_list'
@ -125,6 +129,7 @@ case $service in
'(-y --yaml --vars --graph)--toml[use TOML format instead of JSON]' '(-y --yaml --vars --graph)--toml[use TOML format instead of JSON]'
'(-y --yaml)--vars[add variables to the graph display]' '(-y --yaml)--vars[add variables to the graph display]'
'(-y --yaml --toml --vars --graph)'{-y,--yaml}'[use YAML format instead of JSON]' '(-y --yaml --toml --vars --graph)'{-y,--yaml}'[use YAML format instead of JSON]'
':host or group:->hosts'
) )
;; ;;
ansible-galaxy) ansible-galaxy)
@ -238,7 +243,7 @@ case $state in
;; ;;
galaxy) galaxy)
ign='' ign=''
gactions=( delete import info init install list login remove search setup ) gactions=( delete import info init install list remove search setup )
case ${(j.:.)line[1,3]} in case ${(j.:.)line[1,3]} in
(role|collection):*:*) (role|collection):*:*)
subcmd="${line[1]}-${line[2]}" subcmd="${line[1]}-${line[2]}"
@ -326,11 +331,6 @@ case $state in
'--role-name=[specify name the role should have]:role' '--role-name=[specify name the role should have]:role'
) )
;; ;;
role-login)
args+=(
'--github-token=[identify with github token rather than username and password]'
)
;;
collection-build) collection-build)
args+=( args+=(
'--output-path=[specify path in which the collection is built to]:path [.]:_directories' '--output-path=[specify path in which the collection is built to]:path [.]:_directories'