Activity for Doug Shelton

  • Doug Shelton Doug Shelton posted a comment on discussion Help

    the problem is caused by a change in tar. tar now exits with an error code "2" when positional arguments are used out of order. In the case of sbackup, it places the list of files to exclude after the list of files to include. that's considered an error since the exclude will not be processed. The problem can be fixed by changing sbackup-0.11.6/src/sbackup/ar_backend/tar.py find options.append('--files-from=%s' % tmp_incl) options.append('--exclude-from=%s' % tmp_excl) change the order to options.append('--exclude-from=%s'...

1