3

When using --dry-run with rsync it can list the files that will be backed up. But when I with duplicity do

duplicity --dry-run --name pchome --encrypt-sign-key xxx --include $HOME/Desktop --exclude '**' $HOME file:///mnt/backup

it just gives the statistics.

Question

How can I get duplicity to list the changes (copy/dalete) it will preform?

Jasmine Lognnes
  • 2,520
  • 8
  • 33
  • 51

1 Answers1

3

Increase the verbosity of output. According to duplicity man:

       --verbosity level, -vlevel
          Specify output verbosity level (log level).  Named levels and corresponding values
          are 0 Error, 2 Warning, 4 Notice (default), 8 Info, 9 Debug (noisiest).
          level may also be
          a character: e, w, n, i, d
          a word: error, warning, notice, info, debug

          The options -v4, -vn and -vnotice are functionally equivalent, as are the
          mixed/upper-case versions -vN, -vNotice and -vNOTICE.

--verbosity info worked for me

ptman
  • 28,394
  • 2
  • 30
  • 45