Blame doc/abrt-CCpp.conf.txt

Packit 8ea169
abrt-CCpp.conf(5)
Packit 8ea169
================
Packit 8ea169
Packit 8ea169
NAME
Packit 8ea169
----
Packit 8ea169
abrt-CCpp.conf - Configuration file for ABRT's core dump crash hook
Packit 8ea169
Packit 8ea169
DESCRIPTION
Packit 8ea169
-----------
Packit 8ea169
The configuration file consists of items in the format "Option = Value".
Packit 8ea169
Ithe following items are recognized:
Packit 8ea169
Packit 8ea169
MakeCompatCore = 'yes' / 'no' ...::
Packit 8ea169
   CCpp hook writes its template to the "/proc/sys/kernel/core_pattern" file
Packit 8ea169
   and stores the original template in the "/var/run/abrt/saved_core_pattern"
Packit 8ea169
   file. If you want CCpp hook to create a core dump file named according to
Packit 8ea169
   the original template as well, set 'MakeCompatCore' to 'yes'.
Packit 8ea169
   If the original template string starts with "|", the string "core" is used
Packit 8ea169
   instead of the template.
Packit 8ea169
   For more information about naming core dump files see 'man 5 core'.
Packit 8ea169
Packit 8ea169
MaxCoreFileSize = 'a number in MiB' ...::
Packit 8ea169
   This configuration option together with MaxCrashReportsSize set the limit on
Packit 8ea169
   the size of dumped core file. The lower value of the both options is used as
Packit 8ea169
   the effective limit. 0 is evaluated as unlimited for the both options.
Packit 8ea169
Packit 8ea169
SaveBinaryImage = 'yes' / 'no' ...::
Packit 8ea169
   Do you want a copy of crashed binary be saved?
Packit 8ea169
   Useful, for example, when _deleted binary_ segfaults.
Packit 8ea169
   Default is 'no'.
Packit 8ea169
Packit 8ea169
CreateCoreBacktrace = 'yes' / 'no' ...::
Packit 8ea169
   When this option is set to 'yes', core backtrace is generated
Packit 8ea169
   from the memory image of the crashing process. Only the crash
Packit 8ea169
   thread is present in the backtrace. This feature requires
Packit 8ea169
   kernel 3.18 or newer, otherwise the core backtrace is not
Packit 8ea169
   created.
Packit 8ea169
   Default is 'yes'.
Packit 8ea169
Packit 8ea169
SaveFullCore = 'yes' / 'no' ...::
Packit 8ea169
   Save full coredump? If set to 'no', coredump won't be saved
Packit 8ea169
   and you won't be able to report the crash to Bugzilla. Only
Packit 8ea169
   useful with 'CreateCoreBacktrace' set to 'yes'. Please
Packit 8ea169
   note that if this option is set to 'no' and MakeCompatCore
Packit 8ea169
   is set to 'yes', the core is still written to the current
Packit 8ea169
   directory.
Packit 8ea169
   Default is 'yes'.
Packit 8ea169
Packit 8ea169
IgnoredPaths = /path/to/ignore/*, */another/ignored/path* ...::
Packit 8ea169
   ABRT will ignore crashes in executables whose absolute path matches
Packit 8ea169
   any of the glob patterns listed in the comma separated list.
Packit 8ea169
Packit 8ea169
AllowedUsers = root, wheel, ...::
Packit 8ea169
   ABRT will process only crashes of either allowed users 'AllowedUsers' or
Packit 8ea169
   users who are members of allowed group 'AllowedGroups'. If no allowed users
Packit 8ea169
   nor allowed group are specified ABRT will process crashes of all users.
Packit 8ea169
   'AllowedUsers' is a comma separated list.
Packit 8ea169
Packit 8ea169
AllowedGroups = root, wheel, ...::
Packit 8ea169
   ABRT will process only crashes of either allowed users 'AllowedUsers' or
Packit 8ea169
   users who are members of allowed group 'AllowedGroups'. If no allowed users
Packit 8ea169
   nor allowed group are specified ABRT will process crashes of all users.
Packit 8ea169
   'AllowedGroups' is a comma separated list.
Packit 8ea169
Packit 8ea169
VerboseLog = NUM::
Packit 8ea169
   Used to make the hook more verbose
Packit 8ea169
Packit 8ea169
SEE ALSO
Packit 8ea169
--------
Packit 8ea169
abrt.conf(5)
Packit 8ea169
abrt-action-generate-core-backtrace(1)
Packit 8ea169
Packit 8ea169
AUTHORS
Packit 8ea169
-------
Packit 8ea169
* ABRT team