diff options
author | Daniel Baumann <mail@daniel-baumann.ch> | 2016-10-25 13:10:17 +0000 |
---|---|---|
committer | Daniel Baumann <mail@daniel-baumann.ch> | 2016-10-25 13:10:17 +0000 |
commit | 17e90600218e654071457f0845968e143e8c5d15 (patch) | |
tree | f58c502fe6dadaef45e1a3844944905837b37e51 /share/bash-completion/container | |
parent | Adding upstream version 20160801. (diff) | |
download | open-infrastructure-compute-tools-17e90600218e654071457f0845968e143e8c5d15.tar.xz open-infrastructure-compute-tools-17e90600218e654071457f0845968e143e8c5d15.zip |
Adding upstream version 20161101.upstream/20161101
Signed-off-by: Daniel Baumann <mail@daniel-baumann.ch>
Diffstat (limited to 'share/bash-completion/container')
-rw-r--r-- | share/bash-completion/container | 40 |
1 files changed, 0 insertions, 40 deletions
diff --git a/share/bash-completion/container b/share/bash-completion/container index f6434f8..3bac382 100644 --- a/share/bash-completion/container +++ b/share/bash-completion/container @@ -82,46 +82,6 @@ _container() esac ;; - enter) - case "${cur}" in - -*) - opts="-n --name" - COMPREPLY=( $(compgen -W "${opts}" -- ${cur}) ) - return 0 - ;; - - *) - case "${prev}" in - -n|--name) - opts=$(container list -s -f short) - COMPREPLY=( $(compgen -W "${opts}" -- ${cur}) ) - return 0 - ;; - esac - ;; - esac - ;; - - limit) - case "${cur}" in - -*) - opts="-n --name --blockio-device-weight --blockio-read-bandwith -b --blockio-weight --blockio-write-bandwith -c --cpu-quota --cpu-shares -m --memory-limit -t --tasks-max" - COMPREPLY=( $(compgen -W "${opts}" -- ${cur}) ) - return 0 - ;; - - *) - case "${prev}" in - -n|--name) - opts=$(container list -a -f short) - COMPREPLY=( $(compgen -W "${opts}" -- ${cur}) ) - return 0 - ;; - esac - ;; - esac - ;; - list) case "${cur}" in -*) |