|
|
|
# --- SDE-COPYRIGHT-NOTE-BEGIN ---
|
|
|
|
# This copyright note is auto-generated by ./scripts/Create-CopyPatch.
|
|
|
|
#
|
|
|
|
# Filename: package/.../bacula/config.in
|
|
|
|
# Copyright (C) 2006 The OpenSDE Project
|
|
|
|
# Copyright (C) 2004 - 2006 The T2 SDE Project
|
|
|
|
#
|
|
|
|
# More information can be found in the files COPYING and README.
|
|
|
|
#
|
|
|
|
# This program is free software; you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU General Public License as published by
|
|
|
|
# the Free Software Foundation; version 2 of the License. A copy of the
|
|
|
|
# GNU General Public License can be found in the file COPYING.
|
|
|
|
# --- SDE-COPYRIGHT-NOTE-END ---
|
|
|
|
|
|
|
|
if pkgcheck bacula X
|
|
|
|
then
|
|
|
|
menu_begin MENU_PKG_BACULA 'Bacula Package Options'
|
|
|
|
text 'Install prefix for bacula packages' \
|
|
|
|
SDECFG_PKG_BACULA_PREFIX "opt/bacula"
|
|
|
|
|
|
|
|
pkgout
|
|
|
|
list="client Build_bacula_client_only" ;
|
|
|
|
default="client"
|
|
|
|
while read pkg ver ; do
|
|
|
|
if [ "$pkg" = "mysql" ] ; then
|
|
|
|
default="$pkg"
|
|
|
|
elif [ "$default" = "" ] ; then
|
|
|
|
default="$pkg"
|
|
|
|
fi
|
|
|
|
list="$list $pkg Use_${pkg}_($ver)_as_DB"
|
|
|
|
done < <(grep \
|
|
|
|
-e "^X .* mysql " \
|
|
|
|
-e "^X .* postgresql " \
|
|
|
|
-e "^X .* sqlite " \
|
|
|
|
-e "^X .* sqlite2 " $cfgtmpdir/config/packages | \
|
|
|
|
cut -f5,6 -d' ' | sort)
|
|
|
|
|
|
|
|
if [ "$list" ] ; then
|
|
|
|
choice SDECFG_PKG_BACULA_DB $default $list
|
|
|
|
fi
|
|
|
|
|
|
|
|
menu_end
|
|
|
|
fi
|
|
|
|
|