/etc/abrt/abrt.conf
. ABRT plugins can be configured through their config files, located in the /etc/abrt/plugins/
directory.
abrt.conf
configuration file, you must restart the abrtd
daemon—as root—for the new settings to take effect:
~]# service abrtd restart
/etc/abrt/abrt.conf
.
<yes/no>
OpenGPGCheck
directive to yes
(the default setting) tells ABRT to only analyze and handle crashes in applications provided by packages which are signed by the GPG keys whose locations are listed in the /etc/abrt/gpg_keys
file. Setting OpenGPGCheck
to no
tells ABRT to catch crashes in all programs.
<additional_packages>
] BlackList
option will not be handled by ABRT. If you want ABRT to ignore other packages, list them here separated by commas.
<size_in_megabytes>
1000
MB. Once the quota specified here has been met, ABRT will no longer catch and save program crash information.
sosreport
command immediately after an application crash. You can turn this behavior off by commenting out this line. For further fine-tuning, you can add SOSreport
to either the CCpp
or Python
options to make ABRT run sosreport
after C and C++ or Python application crashes, respectively.
<time>
= <action_to_run>
[ Cron ]
section of abrt.conf
allows you to specify the exact time, or elapsed amount of time between, when ABRT should run a certain action, such as scanning for kernel oopses or performing file transfers. You can list further actions to run by appending them to the end of this section.
# Which Action plugins to run repeatedly [ Cron ] # h:m - at h:m # s - every s seconds 120 = KerneloopsScanner #02:00 = FileTransfer
<time_in_seconds> = <action_to_run>
or <hh:mm> = <action_to_run>
, where hh
(hour) is in the range 00-23
(all hours less than 10 should be zero-filled, i.e. preceded by a 0
), and mm
(minute) is 00-59
, zero-filled likewise.