]> git.ipfire.org Git - thirdparty/strongswan.git/blobdiff - testing/make-testing
ikev1: Get and set the lifetimes of the selected proposal/transform
[thirdparty/strongswan.git] / testing / make-testing
index 7c2e4d56748c564a5a93a4325428d85dcccb948d..84ac20bf2f2bea626df536dbb35d139638ee2d6a 100755 (executable)
@@ -1,25 +1,27 @@
 #!/bin/bash
 
-. $PWD/scripts/function.sh
+DIR=$(dirname `readlink -f $0`)
+. $DIR/testing.conf
 
 rm -f $LOGFILE
+mkdir -p $BUILDDIR
 
 if [ $ENABLE_BUILD_BASEIMAGE = "yes" ]
 then
-       $PWD/scripts/build-baseimage || exit 1
+       $DIR/scripts/build-baseimage || exit 1
 fi
 
-if [ $ENABLE_BUILD_GUESTKERNEL = "yes" ]
+if [ $ENABLE_BUILD_ROOTIMAGE = "yes" ]
 then
-       $PWD/scripts/build-guestkernel || exit 1
+       $DIR/scripts/build-rootimage || exit 1
 fi
 
-if [ $ENABLE_BUILD_UMLROOTFS = "yes" ]
+if [ $ENABLE_BUILD_GUESTKERNEL = "yes" ]
 then
-       $PWD/scripts/build-umlrootfs || exit 1
+       $DIR/scripts/build-guestkernel || exit 1
 fi
 
-if [ $ENABLE_BUILD_UMLHOSTFS = "yes" ]
+if [ $ENABLE_BUILD_GUESTIMAGES = "yes" ]
 then
-       $PWD/scripts/build-umlhostfs $HOSTS || exit 1
+       $DIR/scripts/build-guestimages $HOSTS || exit 1
 fi