summaryrefslogtreecommitdiffstats
path: root/src/plugins
Commit message (Collapse)AuthorAgeFilesLines
* kerneloops, mailx, rhtsupport: add a line to "reported_to" element on successDenys Vlasenko2011-04-083-0/+26
| | | | Signed-off-by: Denys Vlasenko <dvlasenk@redhat.com>
* forgot to push the rhtsupport event fileJiri Moskovcak2011-04-071-0/+1
|
* Merge branch 'master' of ssh://git.fedorahosted.org/git/abrtKarel Klic2011-04-072-5/+12
|\
| * make rhtsupport use /tmp for tmp filesJiri Moskovcak2011-04-072-5/+12
| | | | | | | | | | - also added default event configuration for rhtsupport - and tweaked a spec file a little
* | Better duplicate hashKarel Klic2011-04-071-13/+14
|/ | | | | | | | | | | | | | | Currently the duplicate hash of a crash for Bugzilla is computed from the package NVR (name, version, release), path of the executable, and the backtrace hash. This is very unfortunate because the package NVR is changed frequently (it contains Fedora OS version), and path of the executable is not a good differentiator. When multiple executables from a single component crash with similar backtrace, it is better to assume that they share code and have single Bugzilla bug report. This commit changes the code to compute the duplicate hash from the component name and the backtrace hash.
* Merge branch 'master' of ssh://git.fedorahosted.org/git/abrtJiri Moskovcak2011-04-061-16/+22
|\
| * abrt-dump-oops: make -d option take a parameter: directory where to create dumpsDenys Vlasenko2011-04-051-16/+22
| | | | | | | | | | | | | | Closes #188 "-d should be documented as a root-only, or made to work for user". Also might make testing easier. Signed-off-by: Denys Vlasenko <dvlasenk@redhat.com>
* | make event xml description translatableJiri Moskovcak2011-04-058-43/+55
|/
* Ticket #187 exit code == 0 when error showsNikola Pajkovsky2011-04-041-4/+5
| | | | | | | | | | | | | | $ abrt-dump-oops -d -o Downloads/examples_oops1.test abrt-dump-oops: Found oopses: 1 [...] abrt-dump-oops: Creating dump directories abrt-dump-oops: Can't create directory '/var/spool/abrt/oops-...': Permission denied abrt-dump-oops: 1 errors while dumping oopses [newman@dhcp-24-178 ~]$ echo $? 0 Signed-off-by: Nikola Pajkovsky <npajkovs@redhat.com>
* GList was not set to NULL, possibly sigsegv on f15Nikola Pajkovsky2011-04-011-0/+1
| | | | Signed-off-by: Nikola Pajkovsky <npajkovs@redhat.com>
* remove misleading error messageNikola Pajkovsky2011-03-301-3/+1
| | | | | | | | | | | | solution isn't good enough, but truly remove misleading message. Imagine the situation when user manually set environment Bugzilla_Password and manually run command a-a-b -c /path/to/config1 -c /path/config2 -c /path/config3. Now a-a-b smash all configs into one giant hash table. Just stir the pot. Environment can be set by cli and gui. We have a lot of input how to set config and question is how to determinate which config is wrong and blame someone/something. Signed-off-by: Nikola Pajkovsky <npajkovs@redhat.com>
* Ticket #178 abrt-cli should provide an option to select analyzerNikola Pajkovsky2011-03-301-2/+2
| | | | Signed-off-by: Nikola Pajkovsky <npajkovs@redhat.com>
* all: don't declare variables inside for loopsCosimo Cecchi2011-03-291-3/+6
|
* Revert "Ticket #178 abrt-cli should provide an option to select analyzer"Jiri Moskovcak2011-03-291-2/+2
| | | | This reverts commit e2b73a97a213d6b317e5410b0dc9d931686442d2.
* Ticket #178 abrt-cli should provide an option to select analyzerNikola Pajkovsky2011-03-291-2/+2
| | | | Signed-off-by: Nikola Pajkovsky <npajkovs@redhat.com>
* abrt-action-analyze-backtrace: report failure when run on a dump_dir without ↵Karel Klic2011-03-281-1/+7
| | | | backtrace
* abrt-action-analyze-backtrace: log backtrace parser failure every time; ↵Karel Klic2011-03-281-8/+2
| | | | remove dead code
* Ticket #160 Hash is not present in BugzillaNikola Pajkovsky2011-03-281-1/+10
| | | | Signed-off-by: Nikola Pajkovsky <npajkovs@redhat.com>
* Analyze backtraces from retrace serverKarel Klic2011-03-264-125/+222
| | | | | | | | | | | | | | | Hi, the attached patch splits a part of abrt-action-generate-backtrace to a new tool abrt-action-analyze-backtrace, which is used by both LocalGDB and RetraceServer analyzers. Then new abrt-action-analyze-backtrace tool reads backtrace and generates duplication hash, detects crash function, and provides backtrace rating. These steps haven't been performed for remotely analyzed crashes so far. Karel
* abrt-action-trim-files: new tool for trimming old debuginfo and debug dumpsDenys Vlasenko2011-03-265-23/+224
| | | | Signed-off-by: Denys Vlasenko <dvlasenk@redhat.com>
* added xml file for kerneloops reporter, split koops events to a separate fileJiri Moskovcak2011-03-253-2/+28
|
* fixes for missing uid caseDenys Vlasenko2011-03-253-15/+36
| | | | Signed-off-by: Denys Vlasenko <dvlasenk@redhat.com>
* remove FILENAME_INFORMALL and tighten up some loose endsDenys Vlasenko2011-03-252-2/+0
| | | | Signed-off-by: Denys Vlasenko <dvlasenk@redhat.com>
* make $ABRT_PROG_PREFIX control whether log messages are prefixedDenys Vlasenko2011-03-2510-110/+80
| | | | | | | | | | by abrt-action-foo programs. abrtd, abrt-server and abrt-handle-crashdump now have option -p which sets ABRT_PROG_PREFIX=1 for their children and thus makes them emit program name prefixes. Signed-off-by: Denys Vlasenko <dvlasenk@redhat.com>
* remove plugins/Logger.confDenys Vlasenko2011-03-242-11/+0
| | | | Signed-off-by: Denys Vlasenko <dvlasenk@redhat.com>
* remove plugins/Mailx.conf and plugins/RHTSupport.confDenys Vlasenko2011-03-246-35/+3
| | | | Signed-off-by: Denys Vlasenko <dvlasenk@redhat.com>
* oops: don't save bogus "executable", and save real "cmdline" instead of ↵Denys Vlasenko2011-03-241-4/+12
| | | | | | bogus one Signed-off-by: Denys Vlasenko <dvlasenk@redhat.com>
* extend dump_dir to allow creating world-readable directoryJiri Moskovcak2011-03-241-3/+21
| | | | - so far used only by kerneloops
* wizard: add keyboard accelerator for "Configure Events" buttonsDenys Vlasenko2011-03-242-12/+10
| | | | Signed-off-by: Denys Vlasenko <dvlasenk@redhat.com>
* added event xml file for RHTSupport, removed unused glade filesJiri Moskovcak2011-03-238-1089/+32
|
* Replace FILENAME_MESSAGE with FILENAME_REPORTED_TO.Denys Vlasenko2011-03-183-3/+10
| | | | | | | | | | | This fixes the problem with abrt-cli not showing unreported bugs and abrt-gui not showing "green lamp" for reported bugs. In general, it introduces a way to record reporting results, such as Bugzilla URL, in dump dir. In the future, this enables such functions as "check BZ status". Signed-off-by: Denys Vlasenko <dvlasenk@redhat.com>
* Merge branch 'master' of ssh://git.fedorahosted.org/git/abrtJiri Moskovcak2011-03-172-2/+2
|\
| * s:/var/log/abrt.log:/tmp/abrt.log:gDenys Vlasenko2011-03-172-2/+2
| | | | | | | | Signed-off-by: Denys Vlasenko <dvlasenk@redhat.com>
* | -added event config files for Mailx trac#163Jiri Moskovcak2011-03-173-3/+33
|/
* abrt-dump-oops: fix code to detect the markerDenys Vlasenko2011-03-171-26/+30
| | | | Signed-off-by: Denys Vlasenko <dvlasenk@redhat.com>
* forgot to commit abrt-action-list-dsos.pyJiri Moskovcak2011-03-171-0/+23
|
* ccpp: save package's NVR for all loaded librariesJiri Moskovcak2011-03-162-2/+4
|
* retrace-client: batch operation exits with 1 when retracing failsKarel Klic2011-03-161-1/+4
|
* Merge branch 'master' of ssh://git.fedorahosted.org/git/abrtKarel Klic2011-03-162-46/+60
|\
| * abrt-dump-oops: fix double-free; abrt_event.conf: better report event nameDenys Vlasenko2011-03-161-41/+55
| | | | | | | | Signed-off-by: Denys Vlasenko <dvlasenk@redhat.com>
| * better messages in abrt-action-install-debuginfo and bugzilla descriptionDenys Vlasenko2011-03-161-5/+5
| | | | | | | | Signed-off-by: Denys Vlasenko <dvlasenk@redhat.com>
* | reanalyze configuration symlinksKarel Klic2011-03-161-0/+2
|/
* Merge branch 'bz'Nikola Pajkovsky2011-03-161-24/+6
|\ | | | | | | | | * bz: get rid of std::vector from bugzilla
| * get rid of std::vector from bugzillaNikola Pajkovsky2011-03-151-24/+6
| | | | | | | | Signed-off-by: Nikola Pajkovsky <npajkovs@redhat.com>
* | bugzilla reporter fixesDenys Vlasenko2011-03-162-24/+25
| | | | | | | | Signed-off-by: Denys Vlasenko <dvlasenk@redhat.com>
* | save "exitcode 0" messages in event_log for "silent" actions; tweak .xml a bitDenys Vlasenko2011-03-163-25/+23
| | | | | | | | Signed-off-by: Denys Vlasenko <dvlasenk@redhat.com>
* | install debuginfo: honor $ABRT_VERBOSE; add "Looking for pkgs in repos" msgDenys Vlasenko2011-03-161-7/+20
| | | | | | | | Signed-off-by: Denys Vlasenko <dvlasenk@redhat.com>
* | added copyright bannersDenys Vlasenko2011-03-152-2/+18
| | | | | | | | Signed-off-by: Denys Vlasenko <dvlasenk@redhat.com>
* | style fixesDenys Vlasenko2011-03-151-1/+1
|/ | | | Signed-off-by: Denys Vlasenko <dvlasenk@redhat.com>
* set the default values in report_Bugzilla.xmlJiri Moskovcak2011-03-141-0/+2
|