diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2017-11-01 08:16:57 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2017-11-01 08:16:57 +0000 |
commit | 34095d718ea653678e29bd60ac32740c13df3417 (patch) | |
tree | ab8a557980a133ff8b40ce3d53a2984dc5db04c3 /share/bash-completion/container | |
parent | Adding upstream version 20171013. (diff) | |
download | open-infrastructure-compute-tools-34095d718ea653678e29bd60ac32740c13df3417.tar.xz open-infrastructure-compute-tools-34095d718ea653678e29bd60ac32740c13df3417.zip |
Adding upstream version 20171101.upstream/20171101
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'share/bash-completion/container')
-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 ;; |