add missing parameters to backupninja.conf manpage

This commit is contained in:
Jerome Charaoui 2021-01-24 14:30:42 -05:00
parent 6461645745
commit aa2a83c53f
2 changed files with 30 additions and 1 deletions

View File

@ -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

View File

@ -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