mirror of
https://github.com/strongswan/strongswan.git
synced 2025-10-16 00:00:37 -04:00
26 lines
423 B
Bash
Executable File
26 lines
423 B
Bash
Executable File
#!/bin/bash
|
|
|
|
. $PWD/scripts/function.sh
|
|
|
|
rm -f $LOGFILE
|
|
|
|
if [ $ENABLE_BUILD_BASEIMAGE = "yes" ]
|
|
then
|
|
$PWD/scripts/build-baseimage || exit 1
|
|
fi
|
|
|
|
if [ $ENABLE_BUILD_ROOTIMAGE = "yes" ]
|
|
then
|
|
$PWD/scripts/build-rootimage || exit 1
|
|
fi
|
|
|
|
if [ $ENABLE_BUILD_GUESTKERNEL = "yes" ]
|
|
then
|
|
$PWD/scripts/build-guestkernel || exit 1
|
|
fi
|
|
|
|
if [ $ENABLE_BUILD_GUESTIMAGES = "yes" ]
|
|
then
|
|
$PWD/scripts/build-guestimages $HOSTS || exit 1
|
|
fi
|