]> git.sur5r.net Git - bacula/bacula/blob - bacula/scripts/defaultconfig
Add scripts/bacula_config script that displays configure options and results
[bacula/bacula] / bacula / scripts / defaultconfig
1 #!/bin/sh
2 #
3 # This is a default configuration file for Bacula that
4 # sets reasonable defaults, and assumes that you do not
5 # have MySQL running.  It will "install" Bacula into 
6 # bin and etc in the current directory.
7 #
8
9 CFLAGS="-g -Wall" \
10   ./configure \
11     --sbindir=$HOME/bacula/bin \
12     --sysconfdir=$HOME/bacula/bin \
13     --with-pid-dir=$HOME/bacula/bin \
14     --with-subsys-dir=$HOME/bacula/bin \
15     --enable-smartalloc \
16     --enable-gnome \
17     --with-mysql=$HOME/mysql \
18     --with-working-dir=$HOME/bacula/bin/working \
19     --with-dump-email=root@localhost \
20     --with-job-email=root@localhost \
21     --with-smtp-host=localhost \
22     --with-baseport=9101
23
24 exit 0