Blame src/hooks/CCpp.conf.in

Packit 8ea169
# Configuration file for CCpp hook
Packit 8ea169
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
# 'no' because of RLIMIT_CORE='unlimited' since systemd-229:
Packit 8ea169
#   https://github.com/systemd/systemd/issues/2643
Packit 8ea169
MakeCompatCore = no
Packit 8ea169
Packit 8ea169
# The option allows you to set limit for the core file size in MiB.
Packit 8ea169
#
Packit 8ea169
# This value is compared to value of the MaxCrashReportSize configuration
Packit 8ea169
# option from (/etc/abrt.conf) and the lower value is used as the limit.
Packit 8ea169
#
Packit 8ea169
# If MaxCoreFileSize is 0 then the value of MaxCrashReportSize is the limit.
Packit 8ea169
# If MaxCrashReportSize is 0 then the value of MaxCoreFileSize is the limit.
Packit 8ea169
# If both values are 0 then the core file size is unlimited.
Packit 8ea169
MaxCoreFileSize = 0
Packit 8ea169
Packit 8ea169
# Do you want a copy of crashed binary be saved?
Packit 8ea169
# (useful, for example, when _deleted binary_ segfaults)
Packit 8ea169
SaveBinaryImage = no
Packit 8ea169
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
CreateCoreBacktrace = yes
Packit 8ea169
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
SaveFullCore = yes
Packit 8ea169
Packit 8ea169
# Used for debugging the hook
Packit 8ea169
#VerboseLog = 2
Packit 8ea169
Packit 8ea169
# Specify directories where ABRT should look for non-system debuginfos.
Packit 8ea169
#
Packit 8ea169
# Add a colon separated list of file system paths.
Packit 8ea169
#
Packit 8ea169
# Beware the first path in the list is used by ABRT to save downloaded
Packit 8ea169
# debuginfos, therefore the first path in the list must be _writable_, the
Packit 8ea169
# rest of the list can be read-only.
Packit 8ea169
#
Packit 8ea169
# (default: /var/cache/abrt-di)
Packit 8ea169
#
Packit 8ea169
#DebuginfoLocation = /var/cache/abrt-di
Packit 8ea169
Packit 8ea169
# Specify Package manager used for downloading of debuginfo packages
Packit 8ea169
# Allowed values are: yum, dnf
Packit 8ea169
# Default value is: @DEFAULT_PACKAGE_MANAGER@
Packit 8ea169
#
Packit 8ea169
# PackageManager = @DEFAULT_PACKAGE_MANAGER@
Packit 8ea169
Packit 8ea169
# Allow the hook to run 'rpm -qf' for crashes in containers
Packit 8ea169
#
Packit 8ea169
# SaveContainerizedPackageData = yes
Packit 8ea169
Packit 8ea169
# Standalone hook tells abrt-hook-ccpp to create a dump directory even if abrtd
Packit 8ea169
# is not running.
Packit 8ea169
#
Packit 8ea169
# StandaloneHook = yes
Packit 8ea169
Packit 8ea169
# ABRT will ignore crashes in executables whose absolute path matches
Packit 8ea169
# one of any of the glob patterns listed in the comma separated list.
Packit 8ea169
#
Packit 8ea169
# For example:
Packit 8ea169
#    IgnoredPaths = /path/to/ignore/*, */another/ignored/path*
Packit 8ea169
#
Packit 8ea169
#IgnoredPaths =
Packit 8ea169
Packit 8ea169
# ABRT will process only crashes of either allowed users or users who are
Packit 8ea169
# members of allowed group. If no allowed users nor allowed group are specified
Packit 8ea169
# ABRT will process crashes of all users. Both AllowedUsers and AllowedGroups
Packit 8ea169
# are a comma sepparated list.
Packit 8ea169
#
Packit 8ea169
# For example:
Packit 8ea169
#    AllowedUsers = root, wheel, ...
Packit 8ea169
#    AllowedGroups = root, wheel, ...
Packit 8ea169
#
Packit 8ea169
#AllowedUsers =
Packit 8ea169
#AllowedGroups =