From 1ec786944335bd21a4838a9fbe01397a1fee1b14 Mon Sep 17 00:00:00 2001 From: Harald Albers Date: Fri, 13 Jan 2017 11:56:50 +0100 Subject: [PATCH] Add bash completion for `plugin install --disable-content-trust` Signed-off-by: Harald Albers (cherry picked from commit 725a864a0496a6c10f56c30f8a45234230951343) Signed-off-by: Victor Vieux --- contrib/completion/bash/docker | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contrib/completion/bash/docker b/contrib/completion/bash/docker index 933fbcf7d9..df192d488c 100644 --- a/contrib/completion/bash/docker +++ b/contrib/completion/bash/docker @@ -3320,7 +3320,7 @@ _docker_plugin_install() { case "$cur" in -*) - COMPREPLY=( $( compgen -W "--alias --disable --grant-all-permissions --help" -- "$cur" ) ) + COMPREPLY=( $( compgen -W "--alias --disable --disable-content-trust=false --grant-all-permissions --help" -- "$cur" ) ) ;; esac }