#!/bin/sh
#-----------------------------------------------------------------------------
# /var/install/bin/bcsrv-tools-list - BACULA backup
#
# Copyright (c) 2007 Jens Vehlhaber <jvehlhaber(at)buchenwald(dot)de>
#
# Creation:     2007-02-09 jv
# Last Update:  $Id: bcsrv-tools-list 8607 2006-11-07 15:45:16Z jv $
#
# 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; either version 2 of the License, or
# (at your option) any later version.
#-----------------------------------------------------------------------------

#include eislib
. /var/install/include/eislib

### -------------------------------------------------------------------------
### select backup file
### -------------------------------------------------------------------------
/var/install/bin/list-files.cui -t "Select local backup image for list stored files"\
                                -c "Image:"\
                                -f "*-*" \
                                -p "/data/bcsrv/archive" \
                                -o 1 -d -w \
                                -s "/usr/local/bacula/bin/bls -c /etc/bacula-sd.conf /data/bcsrv/archive -V " \
                                --helpfile=/var/install/help/bcsrv \
                                --helpname=BCSRV_MENU_LIST

### -------------------------------------------------------------------------
exit 0