summaryrefslogtreecommitdiffstats
path: root/src/daemon/abrt.conf.5
diff options
context:
space:
mode:
authorNikola Pajkovsky <npajkovs@redhat.com>2010-08-10 10:21:25 +0200
committerNikola Pajkovsky <npajkovs@redhat.com>2010-08-10 10:21:56 +0200
commit83a6ce9ad4b1828e163dc7172ef603201b748473 (patch)
tree9d0580eba6c01cb5964655df42bafab9de91329b /src/daemon/abrt.conf.5
parente84ab7783d05eb7b5f1b55ab44e7c23c85e50516 (diff)
downloadabrt-83a6ce9ad4b1828e163dc7172ef603201b748473.tar.gz
abrt-83a6ce9ad4b1828e163dc7172ef603201b748473.tar.xz
abrt-83a6ce9ad4b1828e163dc7172ef603201b748473.zip
lower case direcotry(no code changed)
Signed-off-by: Nikola Pajkovsky <npajkovs@redhat.com>
Diffstat (limited to 'src/daemon/abrt.conf.5')
-rw-r--r--src/daemon/abrt.conf.595
1 files changed, 95 insertions, 0 deletions
diff --git a/src/daemon/abrt.conf.5 b/src/daemon/abrt.conf.5
new file mode 100644
index 00000000..f8afe393
--- /dev/null
+++ b/src/daemon/abrt.conf.5
@@ -0,0 +1,95 @@
+.TH "abrt.conf" "5" "28 May 2009" ""
+.SH NAME
+abrt.conf \- configuration file for abrt
+.SH DESCRIPTION
+.P
+.I abrt
+is a daemon that watches for application crashes. When a crash occurs,
+it collects the crash data and takes action according to
+its configuration. This manual page describes \fIabrt\fP's configuration
+file.
+.P
+The configuration file consists of sections, each section contains
+several items in the format "Option = Value". A description of each
+section follows:
+.SS [Common]
+.TP
+.B OpenGPGCheck = \fIyes\fP | \fIno\fP
+When set to "yes",
+.I abrt
+will report crashes only in GPG signed packages. When set to "no",
+it will report crashes also in unsigned packages. The default is "no".
+.TP
+.B OpenGPGPublicKeys = \fIfilename\fP , \fIfilename\fP ...
+These are the trusted GPG keys with which packages have to be
+signed for
+.I abrt
+to report them if "OpenGPGCheck = yes".
+.TP
+.B BlackList = \fIpackageName\fP, \fIpackageName\fP ...
+.I abrt
+will ignore packages in this list and will not handle their crashes.
+.TP
+.B BlackListedPaths = \fI/path/to/ignore/*\fP, \fI*/another/ignored/path*\fP ...
+.I abrt
+will ignore crashes in executables whose absolute path matches
+one of specified patterns.
+.TP
+.B Database = \fIdatabasePlugin\fP
+This specifies which database plugin
+.I abrt
+uses to store metadata about the crash.
+.TP
+.B MaxCrashReportsSize = \fInumber\fP
+The maximum disk space (specified in megabytes) that
+.I abrt
+will use for all the crash dumps. Specify a value here to ensure
+that the crash dumps will not fill all available storage space.
+The default is 1000.
+.TP
+.B ActionsAndReporters = \fIplugin\fP, \fIplugin(parameters)\fP
+List of reporter and action plugins which will be
+run at crash time.
+.TP
+.B ProcessUnpackaged = \fIyes\fP | \fIno\fP
+When set to "yes",
+.I abrt
+will catch all crashes in the system. When set to "no",
+it will catch crashes only in Fedora packages.
+The default is "no".
+
+.SS [ AnalyzerActionsAndReporters ]
+This section contains associations between analyzers and action
+or reporter plugins.
+.TP
+.B CCpp = \fIplugin\fP
+.I abrt
+will use this plugin when a C/C++ program crashes.
+You can specify a plugin for specific program, for example
+.br
+CCpp:bind = Mailx("[abrt] Bind crashed")
+.br
+The Mailx plugin will run when bind crashes, instead of the plugin specified for
+all the C/C++ programs.
+.TP
+.B Kerneloops = \fIplugin\fP
+This plugin will be used in the case of kernel crashes.
+.SS [ Cron ]
+This section specifies tasks that will be run at some specified time. You can specify
+either a time of day in the format
+.br
+.B hh:mm = \fIplugin\fP
+.br
+or an interval
+.br
+.B ss = \fIplugin2\fP
+.br
+in this case, \fIplugin2\fP will be run every \fIss\fP seconds (this number
+can be greater than 60).
+.SH "SEE ALSO"
+.IR abrtd (8),
+.IR abrt-plugins (7)
+.SH AUTHOR
+Written by Zdeněk Přikryl <zprikryl@redhat.com> and
+Jiří Moskovčák <jmoskovc@redhat.com>. Manual page written by Daniel
+Novotný <dnovotny@redhat.com>.