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