aboutsummaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorMicah Anderson <micah@riseup.net>2007-11-02 19:32:51 +0000
committerMicah Anderson <micah@riseup.net>2007-11-02 19:32:51 +0000
commit3a74d7d526b38b232b839c4e4b0bc1420ae664f8 (patch)
tree02daec51b6b5bed8bb546dece1f318a1c66e66a2 /examples
parent3cf6de437495495ea400ade55f7b13d4077b8cb3 (diff)
downloadbackupninja-3a74d7d526b38b232b839c4e4b0bc1420ae664f8.tar.gz
backupninja-3a74d7d526b38b232b839c4e4b0bc1420ae664f8.tar.bz2
remove rsnap and rename rub handler to rsync, after consultation with rhatto
Diffstat (limited to 'examples')
-rw-r--r--examples/Makefile.am2
-rw-r--r--examples/example.rsnap67
2 files changed, 1 insertions, 68 deletions
diff --git a/examples/Makefile.am b/examples/Makefile.am
index ca8999f..5dfb7c3 100644
--- a/examples/Makefile.am
+++ b/examples/Makefile.am
@@ -1,6 +1,6 @@
EXAMPLES = example.dup example.ldap example.makecd example.mysql \
- example.pgsql example.rdiff example.rsnap example.sh \
+ example.pgsql example.rdiff example.sh \
example.svn example.sys example.trac
EXTRA_DIST = $(EXAMPLES)
diff --git a/examples/example.rsnap b/examples/example.rsnap
deleted file mode 100644
index c1c50dd..0000000
--- a/examples/example.rsnap
+++ /dev/null
@@ -1,67 +0,0 @@
-##
-## This is an example rsnap configuration file.
-## The defaults are useful in most cases.
-##
-
-## global options
-[options]
-options =
-
-## the nicelevel the backup and all the children should run at
-## the higher nicelevel reduces the priority
-nicelevel = 19
-
-# how many days of data to keep
-keep = 90
-
-# the name of the directory created for the backup
-label = systemname_domain_tld
-
-[source]
-
-# bandwidth limit to be used for rsync
-bandwidthlimit = 1000
-
-# remote_rsync can be used if your rsync is not in your PATH, or if you
-# need a wrapper
-#remote_rsync = /usr/local/bin/sudo_rsync
-
-# options like -P<port> can be specified here
-#sshoptions =
-
-# test the ssh connection before proceding?
-testconnect = yes
-
-# don't translate owner+groupid's to local names
-numericids = 1
-
-# turn on rsync compression? (1 = on, 0 = off)
-compress = 1
-
-srchost = backupuser@hostname.domain.tld
-
-# files to include in the backup
-# (supports globbing with '*'), by default / is included
-include = /var
-include = /usr/local
-include = /home
-
-# files to exclude from the backup
-# (supports globbing with '*')
-exclude = /home/*/Maildir
-exclude = /var/log
-exclude = /proc
-exclude = /srv
-exclude = /sys
-exclude = /*.gz
-
-[dest]
-
-# base directory where backup is made to
-directory = /media/backup
-
-# only necessary if you hit a specifi 2.4 kernel bug
-enable_mv_timestamp_bug = no
-
-# if you say no here, only one dir is kept, and 'keep' is irrelevant
-incremental = yes