1
0
Fork 0
mirror of https://github.com/moby/moby.git synced 2022-11-09 12:21:53 -05:00

Compute plugin list in bash completion for docker daemon --authz-plugin

Signed-off-by: Harald Albers <github@albersweb.de>
This commit is contained in:
Harald Albers 2016-01-02 14:53:10 -08:00
parent dcbd5e04b7
commit 2134d38935

View file

@ -706,6 +706,10 @@ _docker_daemon() {
"
case "$prev" in
--authz-plugin)
__docker_complete_plugins Authorization
return
;;
--cluster-store)
COMPREPLY=( $( compgen -W "consul etcd zk" -S "://" -- "$cur" ) )
__docker_nospace