diff options
author | Micah Anderson <micah@riseup.net> | 2006-08-06 18:07:07 +0000 |
---|---|---|
committer | Micah Anderson <micah@riseup.net> | 2006-08-06 18:07:07 +0000 |
commit | 29007116b3d05af1dabd49eb9c56711ff35b40ff (patch) | |
tree | c35870e0d874f22d3c860b56cf7855ce5b4f104f /examples | |
parent | 8e154d59efdbbb95fd4e46623a735a7049cea754 (diff) | |
download | backupninja-29007116b3d05af1dabd49eb9c56711ff35b40ff.tar.gz backupninja-29007116b3d05af1dabd49eb9c56711ff35b40ff.tar.bz2 |
Added example file for rsnap, it needs some documentation to make it more clear
Diffstat (limited to 'examples')
-rw-r--r-- | examples/example.rsnap | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/examples/example.rsnap b/examples/example.rsnap new file mode 100644 index 0000000..0893cdf --- /dev/null +++ b/examples/example.rsnap @@ -0,0 +1,36 @@ +[options] +options = +nicelevel = 19 +keep = 90 +label = systemname_domain_tld + +[source] +bandwidthlimit = 1000 +#remote_rsync = /usr/local/bin/sudo_rsync +#sshoptions = +testconnect = yes +numericids = 1 +compress = 1 +srchost = backupuser@hostname.domain.tld + +# files to include in the backup +# (supports globbing with '*') +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] +directory = /media/backup +enable_mv_timestamp_bug = no +incremental = yes +enable_freedups = no +freedups = /usr/local/bin/freedups |