Subversion Repositories configs

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
192 - 1
# Configuration file for CCpp hook
2
 
3
# CCpp hook writes its template to the "/proc/sys/kernel/core_pattern" file
4
# and stores the original template in the "/var/run/abrt/saved_core_pattern"
5
# file. If you want CCpp hook to create a core dump file named according to
6
# the original template as well, set 'MakeCompatCore' to 'yes'.
7
# If the original template string starts with "|", the string "core" is used
8
# instead of the template.
9
# For more information about naming core dump files see 'man 5 core'.
10
#
11
# 'no' because of RLIMIT_CORE='unlimited' since systemd-229:
12
#   https://github.com/systemd/systemd/issues/2643
13
MakeCompatCore = no
14
 
15
# The option allows you to set limit for the core file size in MiB.
16
#
17
# This value is compared to value of the MaxCrashReportSize configuration
18
# option from (/etc/abrt.conf) and the lower value is used as the limit.
19
#
20
# If MaxCoreFileSize is 0 then the value of MaxCrashReportSize is the limit.
21
# If MaxCrashReportSize is 0 then the value of MaxCoreFileSize is the limit.
22
# If both values are 0 then the core file size is unlimited.
23
MaxCoreFileSize = 0
24
 
25
# Do you want a copy of crashed binary be saved?
26
# (useful, for example, when _deleted binary_ segfaults)
27
SaveBinaryImage = no
28
 
29
# When this option is set to 'yes', core backtrace is generated
30
# from the memory image of the crashing process. Only the crash
31
# thread is present in the backtrace. This feature requires
32
# kernel 3.18 or newer, otherwise the core backtrace is not
33
# created.
34
CreateCoreBacktrace = yes
35
 
36
# Save full coredump? If set to 'no', coredump won't be saved
37
# and you won't be able to report the crash to Bugzilla. Only
38
# useful with CreateCoreBacktrace set to 'yes'. Please
39
# note that if this option is set to 'no' and MakeCompatCore
40
# is set to 'yes', the core is still written to the current
41
# directory.
42
SaveFullCore = yes
43
 
44
# Used for debugging the hook
45
#VerboseLog = 2
46
 
47
# Specify directories where ABRT should look for non-system debuginfos.
48
#
49
# Add a colon separated list of file system paths.
50
#
51
# Beware the first path in the list is used by ABRT to save downloaded
52
# debuginfos, therefore the first path in the list must be _writable_, the
53
# rest of the list can be read-only.
54
#
55
# (default: /var/cache/abrt-di)
56
#
57
#DebuginfoLocation = /var/cache/abrt-di
58
 
59
# Specify Package manager used for downloading of debuginfo packages
60
# Allowed values are: yum, dnf
61
# Default value is: dnf
62
#
63
# PackageManager = dnf
64
 
65
# Allow the hook to run 'rpm -qf' for crashes in containers
66
#
67
# SaveContainerizedPackageData = yes
68
 
69
# Standalone hook tells abrt-hook-ccpp to create a dump directory even if abrtd
70
# is not running.
71
#
72
# StandaloneHook = yes
73
 
74
# ABRT will ignore crashes in executables whose absolute path matches
75
# one of any of the glob patterns listed in the comma separated list.
76
#
77
# For example:
78
#    IgnoredPaths = /path/to/ignore/*, */another/ignored/path*
79
#
80
#IgnoredPaths =
81
 
82
# ABRT will process only crashes of either allowed users or users who are
83
# members of allowed group. If no allowed users nor allowed group are specified
84
# ABRT will process crashes of all users. Both AllowedUsers and AllowedGroups
85
# are a comma sepparated list.
86
#
87
# For example:
88
#    AllowedUsers = root, wheel, ...
89
#    AllowedGroups = root, wheel, ...
90
#
91
#AllowedUsers =
92
#AllowedGroups =