From 68e4dba46ab1ffa6604a6170fcecd181f2c9a0a9 Mon Sep 17 00:00:00 2001 From: Justin Riley Date: Fri, 8 May 2015 12:35:11 -0400 Subject: [PATCH] add restart and destroy subcommands to tools/kolla Convenience commands for restarting all containers and destroying all containers Change-Id: I9c4759dbe699bd4b609cefa694ecc897355ff60a --- tools/kolla | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/tools/kolla b/tools/kolla index df69d64e8b..c7be4b141f 100755 --- a/tools/kolla +++ b/tools/kolla @@ -91,6 +91,8 @@ Commands: start Start all kolla containers status List running kolla containers stop Stop all kolla containers + restart Restart all kolla containers + destroy Kill and remove all kolla containers and volumes EOF } @@ -110,6 +112,12 @@ case "$1" in post_start ;; +(restart) + ACTION="Restarting" + COMPOSE_CMD="restart" + process_all + ;; + (status) ACTION="Status of" COMPOSE_CMD="ps" @@ -122,6 +130,14 @@ case "$1" in process_all ;; +(destroy) + ACTION="Destroying" + COMPOSE_CMD="kill" + process_all + COMPOSE_CMD="rm -f -v" + process_all + ;; + (*) usage exit 0 ;;