Comment 1 for bug 1511308

Revision history for this message
mirak (mirak-mirak) wrote :

I encountered this bug, and someone here found a solution :
http://serverfault.com/questions/726525/cannot-restore-duplicity-backup

The bug is that duplicity wasn't compressing at all despite the --no-compression option, so the files are compressed despite not having the .gz extension.

Renaming .sigtar to sigtar.gz and all .difftar to .difftar.gz fixes the damn problem.

$ for i in *.difftar;do mv -v $i $i.gz;done
$ for i in *.sigtar;do mv -v $i $i.gz;done