]> git.sur5r.net Git - bacula/bacula/blobdiff - regress/prototype.conf
ebl fix runscript on director
[bacula/bacula] / regress / prototype.conf
index 534f8cab367a2c2e1d824cb4e2772864ad7e4b35..2ea5a7079ff2b54e949aaea3142451ba02e546c2 100644 (file)
@@ -1,17 +1,52 @@
+#
+# Prototype personal configuration file for the regression 
+#  scripts.  Either edit this file directly, or better copy
+#  it elsewhere so it won't get overwritten.          
+#
 
-# Where to get the source to be tested
-BACULA_SOURCE=""
+#
+# Put the full path to the Bacula source code to be tested
+#
+BACULA_SOURCE=
 
 # Where to send email messages
-EMAIL=""
+#
+EMAIL=
+SMTP_HOST=localhost
 
-# Full path where to find sqlite
-DEPKGS="${HOME}/bacula/depkgs/sqlite"
+# Full "default" path where to find sqlite. 
+# This is only used if you do not specify a database override on the
+# make command.  
+#
+#    N.B. DON'T PUT QOUTES AROUND THE PATH.
+#
+SQLITE_DIR=${HOME}/bacula/depkgs/sqlite
 
-TAPE_DRIVE="/dev/nst0"
+#
+# The device name of your tape drive if you have one
+#
+TAPE_DRIVE=/dev/nst0
+TAPE_DRIVE1=/dev/null
 
+#
 # if you don't have an autochanger set AUTOCHANGER to /dev/null
-AUTOCHANGER="/dev/sg0"
+#
+AUTOCHANGER=/dev/sg0
 
+#
 # This must be the path to the autochanger including its name
-AUTOCHANGER_PATH="/bin/mtx"
+#
+AUTOCHANGER_PATH=/bin/mtx
+
+# Set your database here
+WHICHDB="--with-sqlite=${SQLITE_DIR}"
+#WHICHDB="--with-mysql"
+#WHICHDB="--with-postgresql"
+
+# Set this to "--with-tcp-wrappers" or "--without-tcp-wrappers"
+TCPWRAPPERS="--with-tcp-wrappers"
+
+# Set this to "" to disable OpenSSL support, "--with-openssl=yes"
+# to enable it, or provide the path to the OpenSSL installation,
+# eg "--with-openssl=/usr/local"
+OPENSSL=""