Add bash completion for `docker plugin upgrade`

Signed-off-by: Harald Albers <github@albersweb.de>
master
Harald Albers 2017-02-08 13:40:13 +01:00 committed by Tibor Vass
parent af095f572e
commit f2aab00321
1 changed files with 20 additions and 0 deletions

View File

@ -3457,6 +3457,7 @@ _docker_plugin() {
push
rm
set
upgrade
"
local aliases="
list
@ -3634,6 +3635,25 @@ _docker_plugin_set() {
esac
}
_docker_plugin_upgrade() {
case "$cur" in
-*)
COMPREPLY=( $( compgen -W "--disable-content-trust --grant-all-permissions --help --skip-remote-check" -- "$cur" ) )
;;
*)
local counter=$(__docker_pos_first_nonflag)
if [ $cword -eq $counter ]; then
__docker_complete_plugins_installed
__ltrim_colon_completions "$cur"
elif [ $cword -eq $((counter + 1)) ]; then
local plugin_images="$(__docker_plugins_installed)"
COMPREPLY=( $(compgen -S : -W "${plugin_images%:*}" -- "$cur") )
__docker_nospace
fi
;;
esac
}
_docker_port() {
_docker_container_port