mirror of
https://github.com/strongswan/strongswan.git
synced 2025-10-08 00:02:03 -04:00
26 lines
419 B
Bash
Executable File
26 lines
419 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_GUESTKERNEL = "yes" ]
|
|
then
|
|
$PWD/scripts/build-guestkernel || exit 1
|
|
fi
|
|
|
|
if [ $ENABLE_BUILD_UMLROOTFS = "yes" ]
|
|
then
|
|
$PWD/scripts/build-umlrootfs || exit 1
|
|
fi
|
|
|
|
if [ $ENABLE_BUILD_UMLHOSTFS = "yes" ]
|
|
then
|
|
$PWD/scripts/build-umlhostfs $HOSTS || exit 1
|
|
fi
|