mirror of
https://github.com/strongswan/strongswan.git
synced 2025-10-10 00:00:19 -04:00
27 lines
448 B
Bash
Executable File
27 lines
448 B
Bash
Executable File
#!/bin/bash
|
|
|
|
DIR=$(dirname `readlink -f $0`)
|
|
. $DIR/testing.conf
|
|
|
|
rm -f $LOGFILE
|
|
|
|
if [ $ENABLE_BUILD_BASEIMAGE = "yes" ]
|
|
then
|
|
$DIR/scripts/build-baseimage || exit 1
|
|
fi
|
|
|
|
if [ $ENABLE_BUILD_ROOTIMAGE = "yes" ]
|
|
then
|
|
$DIR/scripts/build-rootimage || exit 1
|
|
fi
|
|
|
|
if [ $ENABLE_BUILD_GUESTKERNEL = "yes" ]
|
|
then
|
|
$DIR/scripts/build-guestkernel || exit 1
|
|
fi
|
|
|
|
if [ $ENABLE_BUILD_GUESTIMAGES = "yes" ]
|
|
then
|
|
$DIR/scripts/build-guestimages $HOSTS || exit 1
|
|
fi
|