Add bash completion for `docker swarm unlock|unlock-key`

Signed-off-by: Harald Albers <github@albersweb.de>
This commit is contained in:
Harald Albers 2017-01-24 10:11:38 +01:00 committed by Tibor Vass
parent a91e0c5b33
commit 24bf7b830a
1 changed files with 18 additions and 0 deletions

View File

@ -2944,6 +2944,8 @@ _docker_swarm() {
join
join-token
leave
unlock
unlock-key
update
"
__docker_subcommands "$subcommands" && return
@ -3055,6 +3057,22 @@ _docker_swarm_leave() {
esac
}
_docker_swarm_unlock() {
case "$cur" in
-*)
COMPREPLY=( $( compgen -W "--help" -- "$cur" ) )
;;
esac
}
_docker_swarm_unlock-key() {
case "$cur" in
-*)
COMPREPLY=( $( compgen -W "--help --quiet -q --rotate" -- "$cur" ) )
;;
esac
}
_docker_swarm_update() {
case "$prev" in
--cert-expiry|--dispatcher-heartbeat|--external-ca|--max-snapshots|--snapshot-interval|--task-history-limit)