18 lines
349 B
Text
18 lines
349 B
Text
|
# Settings for root configuration
|
||
|
src_dirs = '/'.split() # absolute paths to directories to be backed up
|
||
|
excludes = '''
|
||
|
/dev
|
||
|
/home/*/.cache
|
||
|
/mnt
|
||
|
/proc
|
||
|
/root/.cache
|
||
|
/run
|
||
|
/sys
|
||
|
/tmp
|
||
|
/var/cache
|
||
|
/var/lib/dnf
|
||
|
/var/lock
|
||
|
/var/run
|
||
|
/var/tmp
|
||
|
'''.split() # list of files or directories to skip
|