mirror of
https://0xacab.org/liberate/backupninja.git
synced 2024-11-10 04:42:31 +01:00
a65bc7af30
and clarification: for a given include/exclude/vsinclude statement, they now support EITHER globbing with '*' OR symlinks in the path.
93 lines
2.6 KiB
Plaintext
93 lines
2.6 KiB
Plaintext
##
|
|
## This is an example rdiff-backup configuration file.
|
|
## The defaults are useful in most cases, just make sure
|
|
## to configure the destination host and user.
|
|
##
|
|
|
|
## passed directly to rdiff-backup
|
|
# options = --force
|
|
|
|
## default is 0, but set to 19 if you want to lower the priority.
|
|
# nicelevel = 19
|
|
|
|
## default is yes. set to no to skip the test if the remote host is alive
|
|
# testconnect = no
|
|
|
|
######################################################
|
|
## source section
|
|
## (where the files to be backed up are coming from)
|
|
|
|
[source]
|
|
|
|
# an optional subdirectory below 'directory' (see [dest])
|
|
label = thishostname
|
|
|
|
# type can be "local" or "remote"
|
|
type = local
|
|
|
|
# only use if '[source] type = remote'
|
|
#host = srchost
|
|
#user = srcuser
|
|
|
|
# how many days of data to keep
|
|
# (you can also use the time format of rdiff-backup, e.g. 6D5h)
|
|
keep = 60
|
|
|
|
# A few notes about includes and excludes:
|
|
# - include, exclude and vsinclude statements support EITHER globbing with '*'
|
|
# OR symlinks in the path; usage of both in the same statement is *not*
|
|
# supported and will lead to weird behaviour.
|
|
# - All the excludes come after all the includes. The order is not otherwise
|
|
# taken into account.
|
|
|
|
# files to include in the backup
|
|
include = /var/spool/cron/crontabs
|
|
include = /var/backups
|
|
include = /etc
|
|
include = /root
|
|
include = /home
|
|
include = /usr/local/bin
|
|
include = /usr/local/sbin
|
|
include = /var/lib/dpkg/status
|
|
include = /var/lib/dpkg/status-old
|
|
|
|
# If vservers = yes in /etc/backupninja.conf then the following variables can
|
|
# be used:
|
|
# vsnames = all | <vserver1> <vserver2> ... (default = all)
|
|
# vsinclude = <path>
|
|
# vsinclude = <path>
|
|
# ...
|
|
# Any path specified in vsinclude is added to the include list for each vserver
|
|
# listed in vsnames (or all if vsnames = all, which is the default).
|
|
#
|
|
# For example, vsinclude = /home will backup the /home directory in every
|
|
# vserver listed in vsnames. If you have 'vsnames = foo bar baz', this
|
|
# vsinclude will add to the include list /vservers/foo/home, /vservers/bar/home
|
|
# and /vservers/baz/home.
|
|
# Vservers paths are derived from $VROOTDIR.
|
|
|
|
# files to exclude from the backup
|
|
#exclude = /home/*/.gnupg
|
|
|
|
######################################################
|
|
## destination section
|
|
## (where the files are copied to)
|
|
|
|
[dest]
|
|
|
|
# type can be "local" or "remote"
|
|
type = remote
|
|
|
|
# put the backups under this directory
|
|
directory = /backups
|
|
|
|
# the machine which will receive the backups.
|
|
# only use if "[dest] type = remote"
|
|
host = backuphost
|
|
|
|
# make the files owned by this user. you must be able to
|
|
# `su -c "ssh backupuser@backhost"` without specifying a password.
|
|
# only use if "[dest] type = remote"
|
|
user = backupuser
|
|
|