mirror of
https://github.com/strongswan/strongswan.git
synced 2025-12-07 00:00:13 -05:00
Guest and network configuration is setup using the libvirt virtualization API. The [start|stop]_testing scripts have been updated accordingly. qemu/KVM does not currently support a hostfs, so the shared build tree mount has been dropped for now.
26 lines
379 B
Bash
Executable File
26 lines
379 B
Bash
Executable File
#!/bin/bash
|
|
|
|
. $PWD/scripts/function.sh
|
|
|
|
rm -f $LOGFILE
|
|
|
|
if [ $ENABLE_BUILD_BASEIMAGE = "yes" ]
|
|
then
|
|
$PWD/scripts/build-baseimage
|
|
fi
|
|
|
|
if [ $ENABLE_BUILD_GUESTKERNEL = "yes" ]
|
|
then
|
|
$PWD/scripts/build-guestkernel
|
|
fi
|
|
|
|
if [ $ENABLE_BUILD_UMLROOTFS = "yes" ]
|
|
then
|
|
$PWD/scripts/build-umlrootfs
|
|
fi
|
|
|
|
if [ $ENABLE_BUILD_UMLHOSTFS = "yes" ]
|
|
then
|
|
$PWD/scripts/build-umlhostfs $HOSTS
|
|
fi
|