blob: ad18d5f2d051edfc0c2ba15d13000211e8b80e68 (
plain) (
tree)
|
|
.TH "sos.conf" "5" "SOSREPORT" "sosreport configuration file"
.SH NAME
sos.conf \- sosreport configuration
.SH DESCRIPTION
.sp
sosreport uses a configuration file at /etc/sos.conf.
.SH PARAMETERS
.sp
There are three sections in the sosreport configuration file:
general, plugins and tunables. Options are set using 'ini'-style
\fBname = value\fP pairs. Disabling/enabling a boolean option
is done the same way like on command line (e.g. process.lsof=off).
Some options accept a comma separated list of values.
Using options that dont expect a value (like all-logs or no-report)
will result in enabling those options, regardless of value set.
Sections are parsed in the ordering:
.br
- \fB[general]\fP
.br
- \fB[plugins]\fP (disable)
.br
- \fB[plugins]\fP (enable)
.br
- \fB[tunables]\fP
.TP
\fB[general]\fP
<option> Sets (long) option value. Short options (i.e. z=auto)
are not supported.
.TP
\fB[plugins]\fP
disable Comma separated list of plugins to disable.
.br
enable Comma separated list of plugins to enable.
.TP
\fB[tunables]\fP
plugin.option Alter available options for defined plugin.
.SH EXAMPLES
To use quiet and batch mode with 10 threads:
.LP
[general]
.br
batch=yes
.br
build=true
.br
threads=10
.sp
To disable the 'general' and 'filesys' plugins:
.LP
[plugins]
.br
disable = general, filesys
.sp
To disable rpm package verification in the RPM plugin:
.LP
[tunables]
.br
rpm.rpmva = off
.br
.SH FILES
.sp
/etc/sos.conf
.SH SEE ALSO
.sp
sosreport(1)
|