]> git.sur5r.net Git - bacula/bacula/blob - bacula/scripts/defaultconfig
crypto: remove most of OpenSSL initcallbacks for 1.1
[bacula/bacula] / bacula / scripts / defaultconfig
1 #!/bin/sh
2 #
3 # Copyright (C) 2000-2015 Kern Sibbald
4 # License: BSD 2-Clause; see file LICENSE-FOSS
5 #
6 # This is a default configuration file for Bacula that
7 # sets reasonable defaults, and assumes that you do not
8 # have MySQL running.  It will "install" Bacula into 
9 # bin and etc in the current directory.
10 #
11
12 CFLAGS="-g -Wall" \
13   ./configure \
14     --sbindir=$HOME/bacula/bin \
15     --sysconfdir=$HOME/bacula/bin \
16     --with-pid-dir=$HOME/bacula/bin \
17     --with-subsys-dir=$HOME/bacula/bin \
18     --enable-smartalloc \
19     --with-mysql=$HOME/mysql \
20     --with-working-dir=$HOME/bacula/bin/working \
21     --with-dump-email=root@localhost \
22     --with-job-email=root@localhost \
23     --with-smtp-host=localhost \
24     --with-baseport=9101
25
26 exit 0