Add bash completion for service create|update --stop-signal
Signed-off-by: Harald Albers <github@albersweb.de>
This commit is contained in:
parent
3fe2730ab3
commit
81cbf49e52
1 changed files with 5 additions and 0 deletions
|
@ -2993,6 +2993,7 @@ _docker_service_update_and_create() {
|
|||
--rollback-monitor
|
||||
--rollback-parallelism
|
||||
--stop-grace-period
|
||||
--stop-signal
|
||||
--update-delay
|
||||
--update-failure-action
|
||||
--update-max-failure-ratio
|
||||
|
@ -3131,6 +3132,10 @@ _docker_service_update_and_create() {
|
|||
COMPREPLY=( $( compgen -W "continue pause" -- "$cur" ) )
|
||||
return
|
||||
;;
|
||||
--stop-signal)
|
||||
__docker_complete_signals
|
||||
return
|
||||
;;
|
||||
--update-failure-action)
|
||||
COMPREPLY=( $( compgen -W "continue pause rollback" -- "$cur" ) )
|
||||
return
|
||||
|
|
Loading…
Add table
Reference in a new issue