Annotation of embedaddon/strongswan/testing/make-testing, revision 1.1
1.1 ! misho 1: #!/bin/bash
! 2:
! 3: DIR=$(dirname `readlink -f $0`)
! 4: . $DIR/testing.conf
! 5:
! 6: rm -f $LOGFILE
! 7: mkdir -p $BUILDDIR
! 8:
! 9: if [ $ENABLE_BUILD_BASEIMAGE = "yes" ]
! 10: then
! 11: $DIR/scripts/build-baseimage || exit 1
! 12: fi
! 13:
! 14: if [ $ENABLE_BUILD_ROOTIMAGE = "yes" ]
! 15: then
! 16: $DIR/scripts/build-rootimage || exit 1
! 17: fi
! 18:
! 19: if [ $ENABLE_BUILD_GUESTKERNEL = "yes" ]
! 20: then
! 21: $DIR/scripts/build-guestkernel || exit 1
! 22: fi
! 23:
! 24: if [ $ENABLE_BUILD_GUESTIMAGES = "yes" ]
! 25: then
! 26: $DIR/scripts/build-guestimages $HOSTS || exit 1
! 27: fi
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>