diff options
author | Daniel Baumann <daniel.baumann@open-infrastructure.net> | 2018-05-27 18:32:24 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@open-infrastructure.net> | 2018-05-27 18:44:03 +0000 |
commit | 9dfb6f87d0696fbf1930eda7d1957f52f2551988 (patch) | |
tree | 2608c0c8607a1689c23bde67cf10be7cb8cb23ad /lib/container/remove | |
parent | Correcting typo in verbose option handling of container remove command. (diff) | |
download | compute-tools-9dfb6f87d0696fbf1930eda7d1957f52f2551988.tar.xz compute-tools-9dfb6f87d0696fbf1930eda7d1957f52f2551988.zip |
Adding 'ALL' as pseudo container name for container start, stop, restart, and remove commands to act on all available container respectivly.
Signed-off-by: Daniel Baumann <daniel.baumann@open-infrastructure.net>
Diffstat (limited to 'lib/container/remove')
-rwxr-xr-x | lib/container/remove | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/lib/container/remove b/lib/container/remove index 427bf4a..275c867 100755 --- a/lib/container/remove +++ b/lib/container/remove @@ -28,6 +28,8 @@ MACHINES="/var/lib/machines" Parameters () { + OPTIONS_ALL="" + GETOPT_LONGOPTIONS="name:,allow-stop,force,verbose," GETOPT_OPTIONS="n:,f,v," @@ -52,16 +54,22 @@ Parameters () --allow-stop) ALLOW_STOP="true" shift 1 + + OPTIONS_ALL="${OPTIONS_ALL} --allow-stop" ;; -f|--force) FORCE="true" shift 1 + + OPTIONS_ALL="${OPTIONS_ALL} --force" ;; -v|--verbose) VERBOSE="true" shift 1 + + OPTIONS_ALL="${OPTIONS_ALL} --verbose" ;; --) @@ -111,6 +119,19 @@ then Usage fi +case "${NAME}" in + ALL) + NAMES="$(container list --format shell --stopped)" + + for NAME in ${NAMES} + do + container remove --name ${NAME} ${OPTIONS_ALL} || true + done + + exit 0 + ;; +esac + if [ ! -e "${MACHINES}/${NAME}" ] && [ ! -e "${CONFIG}/${NAME}.conf" ] then echo "'${NAME}': no such container" >&2 |