Marc Cousin schrieb:
> > > ....
> > > Is there a way to do it ? I understand that it is disabled by default, as
> > > it would generate a lot of logs, but I really need to be able to
> > > double-check the backups without filling 5 more forms :)
> >
> > What about sending the file list per mail? A very simple example:
> >
> > Run After Job = "/etc/bacula/scripts/send_filelist.sh %c %i
> > [email protected]"
> >
> > /etc/bacula/scripts/send_filelist.sh:
> > -----
> > #!/bin/bash
> >
> >
> > CLIENT=$1
> > JOBID=$2
> > MAIL=$3
> >
> > ATTACHMENT=/tmp/filelist-$JOBID.gz
> >
> > echo -e "use Catalog=MyCatalog\nllist files jobid=$JOBID" |
> > /usr/bin/bconsole | gzip -c > $ATTACHMENT
> >
> > nail -s"$Filelist $CLIENT Job: $JOBID" -a $ATTACHMENT $MAIL < /dev/null
> >
> > rm $ATTACHMENT
> > ----
> >
> > It would also be possible to dump the list of files by ssh or ftp to a
> > share or a webserver.
> >
> 
> Not possible. most smtp servers have a 10MB limit on filesize ...
> And some of our backups would generate much bigger logs than that

So you could still upload it to a share or mount the share local on
the dir and put the file list there.

Ralf

------------------------------------------------------------------------------
_______________________________________________
Bacula-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/bacula-devel

Reply via email to