how to configure duplicity
by linuxUser247 from LinuxQuestions.org on (#53JZQ)
I need some help configuring duplicity.
I want to exclude /home/$USER
but include /home/$USER/Documents
/home/$USER/.config/sublime-text-3/Packages/User
PHP Code:duplicity /home --no-encryption \
--exclude-filelist=/home/$USER/.filelist \
file:///tmp/autobackups/
`.filelist`:
using --include-filelist:
Code:- /home/a/
/home/a/Documentsusing --exclude-filelist:
Code:/home/a/
+ /home/a/Documentsnone of this works:
Code:Last selection expression:
Command-line include glob: /home/a/Documents
only specifies that files be included. Because the default is to
include all files, the expression is redundant. Exiting because this
probably isn't what you meant.


I want to exclude /home/$USER
but include /home/$USER/Documents
/home/$USER/.config/sublime-text-3/Packages/User
PHP Code:duplicity /home --no-encryption \
--exclude-filelist=/home/$USER/.filelist \
file:///tmp/autobackups/
`.filelist`:
using --include-filelist:
Code:- /home/a/
/home/a/Documentsusing --exclude-filelist:
Code:/home/a/
+ /home/a/Documentsnone of this works:
Code:Last selection expression:
Command-line include glob: /home/a/Documents
only specifies that files be included. Because the default is to
include all files, the expression is redundant. Exiting because this
probably isn't what you meant.