From 38e4a0c04f9f21b351b9c731678d84ac2b525213 Mon Sep 17 00:00:00 2001 From: Matthijs Kooijman Date: Tue, 30 Dec 2008 22:15:11 +0100 Subject: [PATCH] backupninja: Add default backupninja configuration. --- etc/backupninja.conf | 74 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 74 insertions(+) create mode 100644 etc/backupninja.conf diff --git a/etc/backupninja.conf b/etc/backupninja.conf new file mode 100644 index 0000000..0605274 --- /dev/null +++ b/etc/backupninja.conf @@ -0,0 +1,74 @@ +# +# |\_ +# B A C K U P N I N J A /()/ +# `\| +# main configuration file +# + +# how verbose to make the logs +# 5 -- Debugging messages (and below) +# 4 -- Informational messages (and below) +# 3 -- Warnings (and below) +# 2 -- Errors (and below) +# 1 -- Fatal errors (only) +loglevel = 4 + +# send a summary of the backup status to +# this email address: +reportemail = root + +# if set to 'yes', a report email will be generated +# even if all modules reported success. (default = yes) +reportsuccess = yes + +# if set to 'yes', a report email will be generated +# even if there was no error. (default = yes) +reportwarning = yes + +# if set to 'yes', disk space usage will be included in +# the backup email report +reportspace = no + +# set to the administration group that is allowed to +# read/write configuration files in /etc/backup.d +admingroup = root + +####################################################### +# for most installations, the defaults below are good # +####################################################### + +# where to log: +logfile = /var/log/backupninja.log + +# directory where all the backup configuration files live +configdirectory = /etc/backup.d + +# where backupninja helper scripts are found +scriptdirectory = /usr/share/backupninja + +# where backupninja libs are found +libdirectory = /usr/lib/backupninja + +# whether to use colors in the log file +usecolors = yes + +# default value for 'when' +when = everyday at 01:00 + +# if running vservers, set to yes +vservers = no + +# programs paths +# SLAPCAT=/usr/sbin/slapcat +# LDAPSEARCH=/usr/bin/ldapsearch +# RDIFFBACKUP=/usr/bin/rdiff-backup +# MYSQL=/usr/bin/mysql +# MYSQLHOTCOPY=/usr/bin/mysqlhotcopy +# MYSQLDUMP=/usr/bin/mysqldump +# PGSQLDUMP=/usr/bin/pg_dump +# PGSQLDUMPALL=/usr/bin/pg_dumpall +# GZIP=/bin/gzip +# RSYNC=/usr/bin/rsync +# VSERVERINFO=/usr/sbin/vserver-info +# VSERVER=/usr/sbin/vserver +# VROOTDIR=/var/lib/vservers -- 2.30.2