Comment 8 for bug 1740827

Revision history for this message
Francesco Potortì (pot) wrote :

The patch is very simple:

$ locate *tar.py
/usr/share/sbackup/sbackup/ar_backend/tar.py

then edit tar.py, go to line 270. You find:

    options.append('--files-from=%s' % tmp_incl)
    options.append('--exclude-from=%s' % tmp_excl)

invert the two lines, like this:

    options.append('--exclude-from=%s' % tmp_excl)
    options.append('--files-from=%s' % tmp_incl)

Now save tar.py and the problem is corrected.