From cd6be254ac5e687a6db8276234a2053c5b7a61bd Mon Sep 17 00:00:00 2001 From: nospoonuser Date: Thu, 31 May 2018 13:02:05 +0200 Subject: [PATCH] all command to run all stages at once --- scripts/all.sh | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100755 scripts/all.sh diff --git a/scripts/all.sh b/scripts/all.sh new file mode 100755 index 0000000..3b9a134 --- /dev/null +++ b/scripts/all.sh @@ -0,0 +1,12 @@ +#!/bin/bash + +source $(dirname $0)/defaults.conf +source ${WORKDIR}/mklive.conf +source $(dirname $0)/functions.sh + +for step in bootstrap live installer iso pxe +do + checkstage $step && einfo "Skipping '$step' already done." || $(dirname $0)/$step.sh + [ $? -eq 0 ] || break +done +