Annotation of embedaddon/strongswan/testing/make-testing, revision 1.1.1.2

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: 
1.1.1.2 ! misho      24: if [ $ENABLE_BUILD_CERTIFICATES = "yes" ]
1.1       misho      25: then
1.1.1.2 ! misho      26:        # this always builds the guest images too
        !            27:        $DIR/scripts/build-certs || exit 1
        !            28: 
        !            29: elif [ $ENABLE_BUILD_GUESTIMAGES = "yes" ]
        !            30: then
        !            31:        $DIR/scripts/build-guestimages || exit 1
1.1       misho      32: fi

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>