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.
The patch is very simple:
$ locate *tar.py sbackup/ sbackup/ ar_backend/ tar.py
/usr/share/
then edit tar.py, go to line 270. You find:
options. append( '--files- from=%s' % tmp_incl) append( '--exclude- from=%s' % tmp_excl)
options.
invert the two lines, like this:
options. append( '--exclude- from=%s' % tmp_excl) append( '--files- from=%s' % tmp_incl)
options.
Now save tar.py and the problem is corrected.