]> git.sur5r.net Git - bacula/bacula/blob - regress/prototype.conf
ebl Add AUTOCHANGER_SCRIPT variable in prototype.conf (default
[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 SQLITE_DIR=${HOME}/bacula/depkgs/sqlite
11
12 # set to /dev/null if you do not have a tape drive
13 # Note this is used for both the tape tests and the
14 #   autochanger
15 TAPE_DRIVE="/dev/nst0"
16
17 # if you don't have an autochanger set AUTOCHANGER to /dev/null
18 AUTOCHANGER="/dev/sg0"
19
20 # drive index of first autochanger drive
21 DRIVE1=0
22
23 # drive index of second autochanger drive or "none" (in lowercase)
24 DRIVE2="none"
25
26 # what slot to use for first tape
27 SLOT1=1
28
29 # what slot to use for the second tape
30 SLOT2=2
31
32 # For two drive tests -- set to /dev/null if you do not have it 
33 TAPE_DRIVE1="/dev/null"
34
35 # Set this if you are using fake tape driver
36 #USE_FAKETAPE=--enable-faketape
37
38 # Change this to use disk-changer with faketape
39 AUTOCHANGER_SCRIPT=mtx-changer
40
41 # This must be the path to the autochanger including its name
42 AUTOCHANGER_PATH="/usr/sbin/mtx"
43
44 # Set your database here
45 #WHICHDB="--with-sqlite=${SQLITE_DIR}"
46 #WHICHDB="--with-sqlite3=${SQLITE3_DIR}"
47 #WHICHDB="--with-postgresql"
48 WHICHDB="--with-mysql" 
49
50 # Set this if you use libdbi framework
51 #LIBDBI="dbdriver = "dbi:postgresql"; dbaddress = 127.0.0.1; dbport = 5432"
52
53 # Set this to "--with-tcp-wrappers" or "--without-tcp-wrappers"
54 TCPWRAPPERS="--with-tcp-wrappers"
55
56 # Set this to "" to disable OpenSSL support, "--with-openssl=yes"
57 # to enable it, or provide the path to the OpenSSL installation,
58 # eg "--with-openssl=/usr/local"
59 #   
60 # Note, you can also add any other (as many as you want) special   
61 #  Bacula configuration options here, such as --disable-batch-insert
62 #
63 OPENSSL="--with-openssl"
64
65 # You may put your real host name here, but localhost is valid also
66 #  and it has the advantage that it works on a non-newtworked machine
67 HOST="localhost"
68
69 # see --with-base-port at
70 # http://www.bacula.org/rel-manual/Installing_Bacula.html
71 # You only need to change this if you want to run more than one instance
72 # of regression testing on the same box. You'll need to set BASEPORT
73 # to values that do not overlap.  BASEPORT is the first of three ports
74 # required by each instance, one for each of Dir, SD, and the FD.
75 #
76 BASEPORT=8101
77
78 #
79 # If you want to post items to the Bacula Dart dashboard, you need to
80 #  create a unique name here for each of your test machines.
81 # We recommend that you prefix it by your name, and if you have multiple
82 #  test machines, add some indication of the machine.
83 #
84 SITE_NAME=<your-name>-bacula-${HOST}
85
86 #
87 # The following are used only if you want to run Win32 tests, which
88 #   is a real pain since the Win32 machine is not localhost and you
89 #   also need to specify what to backup.
90 #
91 WIN32_CLIENT="yyyy"
92 WIN32_ADDR="yyyy"
93 WIN32_FILE="c:/users/xxxx"
94 WIN32_PORT=9102
95 WIN32_PASSWORD="zzzzz"