all command to run all stages at once

This commit is contained in:
nospoonuser 2018-05-31 13:02:05 +02:00
parent 65b5cf2b07
commit cd6be254ac
1 changed files with 12 additions and 0 deletions

12
scripts/all.sh Executable file
View File

@ -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