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