]> git.ipfire.org Git - thirdparty/strongswan.git/blob - testing/testing.conf
Version bump to 5.7.0
[thirdparty/strongswan.git] / testing / testing.conf
1 #!/bin/bash
2 # Global configuration file for strongswan integration testing.
3 #
4 # Copyright (C) 2004 Eric Marchionni, Patrik Rayo
5 # Zuercher Hochschule Winterthur
6 #
7 # This program is free software; you can redistribute it and/or modify it
8 # under the terms of the GNU General Public License as published by the
9 # Free Software Foundation; either version 2 of the License, or (at your
10 # option) any later version. See <http://www.fsf.org/copyleft/gpl.txt>.
11 #
12 # This program is distributed in the hope that it will be useful, but
13 # WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
14 # or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
15 # for more details.
16
17 TESTINGDIR=$(dirname `readlink -f ${BASH_SOURCE[0]}`)
18 if [ -f $TESTINGDIR/testing.conf.local ]
19 then
20 . $TESTINGDIR/testing.conf.local
21 fi
22
23 # Root directory of testing
24 : ${TESTDIR=/srv/strongswan-testing}
25
26 # Kernel configuration
27 : ${KERNELVERSION=4.18.9}
28 : ${KERNEL=linux-$KERNELVERSION}
29 : ${KERNELTARBALL=$KERNEL.tar.xz}
30 : ${KERNELCONFIG=$DIR/../config/kernel/config-4.18}
31 : ${KERNELPATCH=ha-4.16-abicompat.patch.bz2}
32
33 # strongSwan version used in tests
34 : ${SWANVERSION=5.7.0}
35
36 # Build directory where the guest kernel and images will be built
37 : ${BUILDDIR=$TESTDIR/build}
38
39 # Logfile
40 : ${LOGFILE=$BUILDDIR/testing.log}
41
42 # Directory used for loop-mounts
43 : ${LOOPDIR=$BUILDDIR/loop}
44
45 # Common image settings
46 : ${IMGEXT=qcow2}
47 : ${IMGDIR=$BUILDDIR/images}
48
49 # Base image settings
50 # The base image is a pristine OS installation created using debootstrap.
51 : ${BASEIMGSIZE=1600}
52 : ${BASEIMGSUITE=jessie}
53 : ${BASEIMGARCH=amd64}
54 : ${BASEIMG=$IMGDIR/debian-$BASEIMGSUITE-$BASEIMGARCH.$IMGEXT}
55 : ${BASEIMGMIRROR=http://http.debian.net/debian}
56 : ${BASEIMGEXTREPOHOST=download.strongswan.org}
57 : ${BASEIMGEXTKEY=https://$BASEIMGEXTREPOHOST/testing/repos/strongswan-testing.gpg.key}
58 : ${BASEIMGEXTREPO=https://$BASEIMGEXTREPOHOST/testing/repos/apt/debian}
59
60 # Directory shared between host and guests
61 : ${SHAREDDIR=$BUILDDIR/shared/$BASEIMGSUITE}
62
63 # Root image settings
64 # The root image is the origin of all guest images. It is a clone of the base
65 # image and contains additional test-specific software and patches.
66 : ${ROOTIMG=$IMGDIR/root.$IMGEXT}
67
68 # libvirt config
69 : ${NBDEV=/dev/nbd0}
70 : ${NBDPARTITION=${NBDEV}p1}
71 : ${VIRTIMGSTORE=/var/lib/libvirt/images}
72 : ${KVMUSER=libvirt-qemu}
73 : ${KVMGROUP=kvm}
74
75 # Directory where test results will be stored
76 : ${TESTRESULTSDIR=$TESTDIR/testresults}
77
78 ##############################################################
79 # Enable particular steps in the make-testing
80 #
81 : ${ENABLE_BUILD_BASEIMAGE=yes}
82 : ${ENABLE_BUILD_ROOTIMAGE=yes}
83 : ${ENABLE_BUILD_GUESTKERNEL=yes}
84 : ${ENABLE_BUILD_GUESTIMAGES=yes}
85
86 ##############################################################
87 # hostname and corresponding IPv4 and IPv6 addresses
88 # You may change the IPs but keep them in the same subnet,
89 # this means retain the netmasks!
90 # Also don't use IPs ending with 254, they are reserved!
91 #
92 : ${HOSTNAMEIPV4="\
93 alice,10.1.0.10,192.168.0.50 \
94 venus,10.1.0.20 \
95 moon,192.168.0.1,10.1.0.1 \
96 carol,192.168.0.100,10.3.0.1 \
97 winnetou,192.168.0.150 \
98 dave,192.168.0.200,10.3.0.2 \
99 sun,192.168.0.2,10.2.0.1 \
100 bob,10.2.0.10"}
101
102 : ${HOSTNAMEIPV6="\
103 alice,fec1::10,fec0::5 \
104 venus,fec1::20 \
105 moon,fec0::1,fec1::1 \
106 carol,fec0::10,fec3::1 \
107 winnetou,fec0::15 \
108 dave,fec0::20,fec3::2 \
109 sun,fec0::2,fec2::1 \
110 bob,fec2::10"}
111
112 ##############################################################
113 # VPN gateways / clients
114 # The hosts stated here will be created. Possible values
115 # are sun, moon, dave, carol, alice, venus, bob, winnetou.
116 #
117 : ${STRONGSWANHOSTS="alice bob carol dave moon sun venus winnetou"}