diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2017-11-01 08:17:07 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2017-11-01 08:17:36 +0000 |
commit | a62718068b63b230ad1d038e124b15d3b7d1e22f (patch) | |
tree | a59e9dbb6a25913f82687152ec7a362b3cba73db /share/bash-completion | |
parent | Releasing debian version 20171013-1. (diff) | |
download | open-infrastructure-compute-tools-a62718068b63b230ad1d038e124b15d3b7d1e22f.tar.xz open-infrastructure-compute-tools-a62718068b63b230ad1d038e124b15d3b7d1e22f.zip |
Merging upstream version 20171101.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'share/bash-completion')
-rw-r--r-- | share/bash-completion/container | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/share/bash-completion/container b/share/bash-completion/container index ffa042d..e2fa4d3 100644 --- a/share/bash-completion/container +++ b/share/bash-completion/container @@ -43,7 +43,7 @@ _container() return 0 ;; - console) + console|con) case "${prev}" in -n|--name) opts=$(container list -s -f shell) @@ -128,7 +128,7 @@ _container() ;; -f|--format) - opts="cli csv json nwdiag shell yaml xml" + opts="cli csv json nwdiag shell sh yaml xml" COMPREPLY=( $(compgen -W "${opts}" -- ${cur}) ) return 0 ;; @@ -243,7 +243,7 @@ _container() return 0 ;; - version) + version|ver) return 0 ;; |