all command to run all stages at once
This commit is contained in:
parent
65b5cf2b07
commit
cd6be254ac
|
@ -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
|
||||||
|
|
Loading…
Reference in New Issue