Please go to the following web site:

http://savannah.nongnu.org/projects/storebackup
or (same):
http://storebackup.org/

Documentation is available at:
http://www.nongnu.org/storebackup/en/
and as a pdf file in the doc folder of the provided tar file


--------------------------------------------------

Bitte rufe die folgende Webseite auf:

http://savannah.nongnu.org/projects/storebackup
oder (gleiche Seite):
http://storebackup.org/

Dokumentation is unter
http://www.nongnu.org/storebackup/de/
sowie als pdf Datei im doc Ordner der verfügbaren tar Datei vorhanden



======================================================================

OLD STUFF FROM README.1ST
-------------------------

To correct a simple but nasty bug which exists in version 1.15 and
1.15.1 you have to do:

File backupdir/<date_time>/.md5CheckSums.info is read by
storeBackupRecover to get information about the uncompression
program. This information is false since version 1.15 if you use a
configuration file:

uncompress=bzip2

it must be:

uncompress=bzip2 -d

You can change this with an editor or use the script correct.sh:

cd backupdir        # (now you see the date_time directories)
<path>/correct.sh   # start the script which appends the ' -d'

--
correct.sh has the following contents:

#! /bin/sh

perl -p -e 's/^\s*uncompress=bzip2\s*$/uncompress=bzip2 -d\n/' -i */.md5CheckSums.info

