]> git.sur5r.net Git - bacula/bacula/blob - regress/scripts/regress-config
Change name of db to regress
[bacula/bacula] / regress / scripts / regress-config
1 #!/bin/sh
2 #
3 # This is the configuration script for regression testing
4 #
5
6 CFLAGS="-g -O2 -Wall" \
7  ./configure \
8     --sbindir=$1/bin \
9     --sysconfdir=$1/bin \
10     --mandir=$1/bin \
11     --with-pid-dir=$1/working \
12     --with-subsys-dir=$1/working \
13     --enable-smartalloc \
14     --disable-readline \
15     --with-working-dir=$1/working \
16     --with-dump-email=$2 \
17     --with-job-email=$2 \
18     --with-smtp-host=$5 \
19     --with-db-name=regress \
20     --with-db-user=regress \
21     $3 \
22     --with-baseport=8101 \
23     $4 \
24     $6
25
26 exit 0