diff options
author | Daniel Baumann <daniel.baumann@open-infrastructure.net> | 2019-03-02 09:05:28 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@open-infrastructure.net> | 2019-03-02 09:17:55 +0000 |
commit | e773a75bae696e70fc54cb70e42df5513b5fc286 (patch) | |
tree | bbd4b08500b88f090f75eb98ac685627e3b8e97e /share/bash-completion | |
parent | Removing key command until its completly tested. (diff) | |
download | compute-tools-e773a75bae696e70fc54cb70e42df5513b5fc286.tar.xz compute-tools-e773a75bae696e70fc54cb70e42df5513b5fc286.zip |
Removing limit command until its completly tested.
Signed-off-by: Daniel Baumann <daniel.baumann@open-infrastructure.net>
Diffstat (limited to '')
-rw-r--r-- | share/bash-completion/container | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/share/bash-completion/container b/share/bash-completion/container index 65c3950..4bc386a 100644 --- a/share/bash-completion/container +++ b/share/bash-completion/container @@ -98,22 +98,6 @@ _container() esac ;; - 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) |