Skip to content

Commit

Permalink
Set some more sane defaults.
Browse files Browse the repository at this point in the history
Still its better to explicitly set the dirs to where you want
them to be and to not depend on changing defaults.
  • Loading branch information
Marco van Wieringen committed Feb 17, 2015
1 parent cc76927 commit b880624
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions autoconf/configure.in
Expand Up @@ -1060,7 +1060,7 @@ AC_SEARCH_LIBS(dlopen, [dl])
dnl ------------------------------------------
dnl Where to place working dir
dnl ------------------------------------------
working_dir=`eval echo ${prefix}/opt/bareos/working`
working_dir=`eval echo ${prefix}/var/bareos/working`
AC_ARG_WITH(working-dir,
AC_HELP_STRING([--with-working-dir=PATH], [specify path of Bareos working directory]),
[
Expand Down Expand Up @@ -1146,7 +1146,7 @@ AC_SUBST(scriptdir)
dnl ------------------------------------------
dnl Where to place bsrdir (bsr files)
dnl ------------------------------------------
bsrdir=`eval echo ${prefix}/opt/bareos/bsr`
bsrdir=`eval echo ${prefix}/var/bareos/working`
AC_ARG_WITH(bsrdir,
AC_HELP_STRING([--with-bsrdir=PATH], [specify path of Bareos bsrs directory]),
[
Expand All @@ -1161,7 +1161,7 @@ AC_SUBST(bsrdir)
dnl ------------------------------------------
dnl Where to place logdir (bsr files)
dnl ------------------------------------------
logdir=`eval echo ${prefix}/opt/bareos/log`
logdir=`eval echo ${prefix}/var/bareos/logs`
AC_ARG_WITH(logdir,
AC_HELP_STRING([--with-logdir=PATH], [specify path of Bareos logs directory]),
[
Expand Down

0 comments on commit b880624

Please sign in to comment.