No edit summary |
No edit summary |
||
Line 6: | Line 6: | ||
Edit config file ''/etc/abrt/abrt.conf'', where you should find lines: | Edit config file ''/etc/abrt/abrt.conf'', where you should find lines: | ||
<pre> | <pre> | ||
# list of actions and reporters which are activated immediately after a | # list of actions and reporters which are activated immediately after a crash | ||
crash | |||
# occurs | # occurs | ||
ActionsAndReporters = | ActionsAndReporters = |
Revision as of 16:34, 31 March 2010
Description
This is testing ABRT Actions and Reporters
How to test
Edit config file /etc/abrt/abrt.conf, where you should find lines:
# list of actions and reporters which are activated immediately after a crash # occurs ActionsAndReporters =
If you add here some reporter or action plugin, then it shout be run at crash time. So for example:
ActionsAndReporters = RunApp("ls", "ls-output")
Saves output from ls command to file called ls-output. This file will be used in summary report. Try Reporter plugin Mailx(<subject>) or other.
Now let's go through second section. There is saved association among analyzers and actions and/or reporter plugins:
[ AnalyzerActionsAndReporters ] # all C/C++ crashes will be reported via Logger plugin CCpp = Logger # if bind crashes, then an email will be send and Logger (from ''CCpp'' section) should be silent CCpp:bind = Mailx("[abrt] Bind crashed") # all kernel crashers will be reporter via Logger Kerneloops = KerneloopsReporter
How to test this: try to change the analyzer - reporter association to something else and report some crash. it should report somewhere else (Logger logs to /var/log/abrt-logger, Mailx sends email to the configured email address).
Expected Results
Verify that the command ls was run and it's output is in ls-output.