aboutsummaryrefslogtreecommitdiff
path: root/docs/examples/example.rdiff
diff options
context:
space:
mode:
authorMicah Anderson <micah@riseup.net>2005-10-26 23:04:16 +0000
committerMicah Anderson <micah@riseup.net>2005-10-26 23:04:16 +0000
commitc4785ba5edb9738f7e9da8c4086a4b6984515dd2 (patch)
treec632486eca3dc14bc60d2e9430e9772b81477fcd /docs/examples/example.rdiff
parentd58025ceb0d044b0e21536262c2818a700c4a382 (diff)
downloadbackupninja-c4785ba5edb9738f7e9da8c4086a4b6984515dd2.tar.gz
backupninja-c4785ba5edb9738f7e9da8c4086a4b6984515dd2.tar.bz2
Moving to autotools standard layout
Diffstat (limited to 'docs/examples/example.rdiff')
-rw-r--r--docs/examples/example.rdiff85
1 files changed, 0 insertions, 85 deletions
diff --git a/docs/examples/example.rdiff b/docs/examples/example.rdiff
deleted file mode 100644
index 8878ad0..0000000
--- a/docs/examples/example.rdiff
+++ /dev/null
@@ -1,85 +0,0 @@
-##
-## 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 note about includes and excludes:
-# All the excludes come after all the includes. The order is
-# not otherwise taken into account. Symlinks are backed up as
-# symlinks, they are not followed! This means you must specify
-# the real canonical path of a directory for it to actually
-# get included.
-
-# files to include in the backup
-# (supports globbing with '*')
-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 vsinclude
-# may be used. Any path specified in vsinclude is added to
-# the include list for each vserver on the system. e.g.
-# vsinclude = /home will backup /vservers/v1/home,
-# /vservers/v2/home, etc.
-
-# files to exclude from the backup
-# (supports globbing with '*')
-#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
-