summaryrefslogtreecommitdiffstats
path: root/share/bash-completion
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@open-infrastructure.net>2016-10-25 12:46:14 +0000
committerDaniel Baumann <daniel.baumann@open-infrastructure.net>2016-10-25 12:46:14 +0000
commit98f90d5838f9a614500b9c9145b3b6f59cbaf770 (patch)
tree16ef3aeeb97364adcb7f7c762c39b318b2cd6cef /share/bash-completion
parentRemoving container enter command for LTS version. (diff)
downloadcompute-tools-98f90d5838f9a614500b9c9145b3b6f59cbaf770.tar.xz
compute-tools-98f90d5838f9a614500b9c9145b3b6f59cbaf770.zip
Removing container limit command for LTS version.
Signed-off-by: Daniel Baumann <daniel.baumann@open-infrastructure.net>
Diffstat (limited to 'share/bash-completion')
-rw-r--r--share/bash-completion/container20
1 files changed, 0 insertions, 20 deletions
diff --git a/share/bash-completion/container b/share/bash-completion/container
index a283d5f..3bac382 100644
--- a/share/bash-completion/container
+++ b/share/bash-completion/container
@@ -82,26 +82,6 @@ _container()
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
-*)