diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2019-03-04 11:26:55 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2019-03-04 11:29:20 +0000 |
commit | 7b3d219d85d52e0e2f712b9b4d42e924bbe47083 (patch) | |
tree | 65350315e4cd5c519636308f18706b5fada56969 /share/bash-completion/container | |
parent | Releasing debian version 20190301-1. (diff) | |
download | open-infrastructure-compute-tools-7b3d219d85d52e0e2f712b9b4d42e924bbe47083.tar.xz open-infrastructure-compute-tools-7b3d219d85d52e0e2f712b9b4d42e924bbe47083.zip |
Merging upstream version 20190304.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'share/bash-completion/container')
-rw-r--r-- | share/bash-completion/container | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/share/bash-completion/container b/share/bash-completion/container index 0013394..e130710 100644 --- a/share/bash-completion/container +++ b/share/bash-completion/container @@ -98,6 +98,27 @@ _container() esac ;; + key) + opts="-a --add -l --list -r --remove" + COMPREPLY=( $(compgen -W "${opts}" -- ${cur}) ) + return 0 + + limit) + case "${prev}" in + -n|--name) + opts="$(container list -a -f shell)" + COMPREPLY=( $(compgen -W "${opts}" -- ${cur}) ) + return 0 + ;; + + *) + opts="-n --name --blockio-device-weight --blockio-read-bandwidth -b --blockio-weight --blockio-write-bandwidth -c --cpu-quota --cpu-shares -m --memory-limit -t --tasks-max" + COMPREPLY=( $(compgen -W "${opts}" -- ${cur}) ) + return 0 + ;; + esac + ;; + list|ls) case "${prev}" in -h|--host) |