summaryrefslogtreecommitdiffstats
path: root/lib/container/start
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2018-05-27 18:57:12 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2018-05-27 18:57:28 +0000
commitec02cf56078c58021d5fe33a738eb00cb0079f74 (patch)
treeb36858f90ef583ac374fa75f4f531bb31c2350ef /lib/container/start
parentReleasing debian version 20180503-1. (diff)
downloadopen-infrastructure-compute-tools-ec02cf56078c58021d5fe33a738eb00cb0079f74.tar.xz
open-infrastructure-compute-tools-ec02cf56078c58021d5fe33a738eb00cb0079f74.zip
Merging upstream version 20180527.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'lib/container/start')
-rwxr-xr-xlib/container/start17
1 files changed, 17 insertions, 0 deletions
diff --git a/lib/container/start b/lib/container/start
index e4b2ee6..62fb926 100755
--- a/lib/container/start
+++ b/lib/container/start
@@ -31,6 +31,8 @@ SYSTEMCTL="true"
Parameters ()
{
+ OPTIONS_ALL=""
+
GETOPT_LONGOPTIONS="name:,force,nspawn,start,"
GETOPT_OPTIONS="n:f,"
@@ -55,6 +57,8 @@ Parameters ()
-f|--force)
FORCE="true"
shift 1
+
+ OPTIONS_ALL="${OPTIONS_ALL} --force"
;;
--nspawn)
@@ -96,6 +100,19 @@ then
Usage
fi
+case "${NAME}" in
+ ALL)
+ NAMES="$(container list --format shell --stopped)"
+
+ for NAME in ${NAMES}
+ do
+ container start --name ${NAME} ${OPTIONS_ALL} || true
+ done
+
+ exit 0
+ ;;
+esac
+
if [ ! -e "${MACHINES}/${NAME}" ]
then
echo "'${NAME}': no such container" >&2