From aa2a83c53fdf0abf2d6007376901cf9884a65440 Mon Sep 17 00:00:00 2001 From: Jerome Charaoui <jerome@riseup.net> Date: Sun, 24 Jan 2021 14:30:42 -0500 Subject: [PATCH] add missing parameters to backupninja.conf manpage --- CHANGELOG.md | 1 + man/backupninja.conf.5 | 30 +++++++++++++++++++++++++++++- 2 files changed, 30 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a920348..8f76b07 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -23,6 +23,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - [core] backup halt should trigger email report if enabled - [core] wrap report email body to 1000 characters by default (DEBBUG-871793) - [core] improve error handling around `reporthost` feature +- [docs] add missing parameters to `backupninja.conf` manpage ## [1.2.0] - 2021-01-21 diff --git a/man/backupninja.conf.5 b/man/backupninja.conf.5 index 76a7ae0..b503099 100644 --- a/man/backupninja.conf.5 +++ b/man/backupninja.conf.5 @@ -50,11 +50,31 @@ Send a summary of the backup status to this email address. .B reportsuccess If set to 'yes', a report email will be generated even if all modules reported success. +.TP +.B reportinfo +If set to 'yes', info messages from handlers will be sent into the email. + .TP .B reportwarning If set to 'yes', a report email will be generated even if there was no error. .TP +.B reportspace +If set to 'yes', disk space usage will be included in the backup email report. + +.TP +.B reporthost +Where to rsync the backupninja.log to be aggregated in a ninjareport. + +.Ts +.B reportuser +What user to connect to reporthost to sync the backupninja.log + +.TP +.B reportdirectory +Where on the reporthost should the report go. + +.Te .B reportwrap Number of columns the email report body should wrap to. @@ -113,7 +133,15 @@ reportemail = root .br reportsuccess = yes .br -reportwarning = yes +reportinfo = no +.br +reportspace = no +.br +reporthost = +.br +reportuser = ninja +.br +reportdirectory = /var/lib/backupninja/reports .br reportwrap = 1000 .br -- GitLab