]> git.sur5r.net Git - bacula/bacula/blob - regress/prototype.conf
regress: add KEEP_SOURCE to avoid removing win32 source
[bacula/bacula] / regress / prototype.conf
1 # Where to get the source to be tested
2 BACULA_SOURCE="${HOME}/bacula/bacula"
3
4 # Where to send email   !!!!! Change me !!!!!!!
5 EMAIL=my-name@domain.com
6 SMTP_HOST="localhost"
7
8 # Full "default" path where to find sqlite (no quotes!)
9 SQLITE3_DIR=${HOME}/bacula/depkgs/sqlite3
10
11 # Set your database here
12 #WHICHDB="--with-sqlite3=${SQLITE3_DIR}"
13 #WHICHDB="--with-postgresql"
14 WHICHDB="--with-mysql" 
15
16 # set to /dev/null if you do not have a tape drive
17 # Note this is used for both the tape tests and the
18 #   autochanger
19 TAPE_DRIVE="/dev/nst0"
20
21 # if you don't have an autochanger set AUTOCHANGER to /dev/null
22 AUTOCHANGER="/dev/sg0"
23
24 # drive index of first autochanger drive
25 DRIVE1=0
26
27 # drive index of second autochanger drive or "none" (in lowercase)
28 DRIVE2="none"
29
30 # what slot to use for first tape
31 SLOT1=1
32
33 # what slot to use for the second tape
34 SLOT2=2
35
36 # For two drive tests -- set to /dev/null if you do not have it 
37 TAPE_DRIVE1="/dev/null"
38
39 # Set this if you are using fake tape driver
40 #USE_VTAPE=yes
41
42 # Change this to use disk-changer with vtape
43 AUTOCHANGER_SCRIPT=mtx-changer
44
45 # This must be the path to the autochanger including its name
46 AUTOCHANGER_PATH="/usr/sbin/mtx"
47
48 # DB parameters
49 db_name="regress"
50 db_user="regress"
51 db_password=""
52
53 # Set this if you use libdbi framework
54 #LIBDBI="dbdriver = "dbi:postgresql"; dbaddress = 127.0.0.1; dbport = 5432"
55 #LIBDBI="dbdriver = "dbi:sqlite"; dbaddress = 127.0.0.1; dbport = 0"
56
57 # Set this to "--with-tcp-wrappers" or "--without-tcp-wrappers"
58 TCPWRAPPERS="--with-tcp-wrappers"
59
60 # Set this to "" to disable OpenSSL support, "--with-openssl=yes"
61 # to enable it, or provide the path to the OpenSSL installation,
62 # eg "--with-openssl=/usr/local"
63 #   
64 # Note, you can also add any other (as many as you want) special   
65 #  Bacula configuration options here, such as --disable-batch-insert
66 #
67 OPENSSL="--with-openssl"
68
69 # You may put your real host name here, but localhost is valid also
70 #  and it has the advantage that it works on a non-newtworked machine
71 HOST="127.0.0.1"
72
73 # see --with-base-port at
74 # http://www.bacula.org/rel-manual/Installing_Bacula.html
75 # You only need to change this if you want to run more than one instance
76 # of regression testing on the same box. You'll need to set BASEPORT
77 # to values that do not overlap.  BASEPORT is the first of three ports
78 # required by each instance, one for each of Dir, SD, and the FD.
79 #
80 BASEPORT=8101
81
82 #
83 # If you want to post items to the Bacula Dart dashboard, you need to
84 #  create a unique name here for each of your test machines.
85 # We recommend that you prefix it by your name, and if you have multiple
86 #  test machines, add some indication of the machine.
87 #
88 SITE_NAME=<your-name>-bacula-${HOST}
89
90 # If you want to use the full source tree to run test uncomment this
91 # KEEP_SOURCE=yes
92
93 #
94 # The following are used only if you want to run Win32 tests, which
95 #   is a real pain since the Win32 machine is not localhost and you
96 #   also need to specify what to backup.
97 # There are a few Win32 tests e.g. tests/win32-test where this will
98 #   work. You must specify the client name, its address, and a 
99 #   file (which may be a directory) on the machine to backup.
100 #   It will be backed up and restored to c:/tmp, but no checking
101 #   of the resulting restore data is done.
102 #
103 # Client name. Note, it must be configured to accept your regress director
104 WIN32_CLIENT="yyyy"
105 # Client FQDN or IP address
106 WIN32_ADDR="yyyy"
107 # File or Directory to backup.  This is put in the "File" directive 
108 #   in the FileSet
109 WIN32_FILE="c:/users/xxxx"
110 # Port of Win32 client
111 WIN32_PORT=9102
112 # Win32 Client password
113 WIN32_PASSWORD="zzzzz"
114 # Where the win32 client will have to contact the SD
115 WIN32_STORE_ADDR="zzzz"