]> git.sur5r.net Git - bacula/bacula/blob - bacula/examples/conf/kernsconfig
Make out of freespace non-fatal for removable devices -- i.e. behaves like tape
[bacula/bacula] / bacula / examples / conf / kernsconfig
1 #!/bin/sh
2 # This is Kern's configure script for Bacula
3 #
4 # Copyright (C) 2000-2015 Kern Sibbald
5 # License: BSD 2-Clause; see file LICENSE-FOSS
6 #
7
8 PREFIX=/opt/bacula
9 CFLAGS="-g -O2 -Wall" \
10   ./configure \
11     --sbindir=${PREFIX}/bin \
12     --sysconfdir=${PREFIX}/etc \
13     --docdir=${PREFIX}/html \
14     --htmldir=${PREFIX}/html \
15     --with-working-dir=${PREFIX}/working \
16     --with-pid-dir=${PREFIX}/working \
17     --with-scriptdir=${PREFIX}/scripts \
18     --with-plugindir=${PREFIX}/plugins \
19     --libdir=${PREFIX}/lib \
20     --enable-smartalloc \
21     --disable-conio \
22     --enable-readline \
23     --enable-bat \
24     --with-mysql \
25     --with-dump-email=localhost \
26     --with-job-email=localhost \
27     --with-smtp-host=localhost \
28     --with-baseport=9101
29
30 exit 0