summaryrefslogtreecommitdiffstats
path: root/src/plugins/abrt-action-install-debuginfo.py
Commit message (Collapse)AuthorAgeFilesLines
* Remove .py from abrt-action-install-debuginfo.pyDenys Vlasenko2011-05-161-516/+0
| | | | | | | | | Rename abrt-action-install-debuginfo to abrt-action-install-debuginfo-to-abrt-cache Yes, it's ugly long... Signed-off-by: Denys Vlasenko <dvlasenk@redhat.com>
* abrt-action-install-debuginfo: support --ids=- (read from stdin)Denys Vlasenko2011-05-161-14/+19
| | | | Signed-off-by: Denys Vlasenko <dvlasenk@redhat.com>
* abrt-action-install-debuginfo.py: fix -vv debugging codeDenys Vlasenko2011-05-121-2/+2
| | | | Signed-off-by: Denys Vlasenko <dvlasenk@redhat.com>
* install-debuginfo: make reponse to ask_yes_no question translatable trac#147Jiri Moskovcak2011-05-031-4/+4
| | | | - + minor update in cs translation to reflect this change
* call abrt-action-trim-files from abrt-action-install-debuginfoDenys Vlasenko2011-05-021-35/+88
| | | | | | This allows us to not setuid abrt-action-trim-files Signed-off-by: Denys Vlasenko <dvlasenk@redhat.com>
* abrt-action-install-debuginfo: handle exception in result = ↵Denys Vlasenko2011-04-271-2/+9
| | | | | | downloader.download(missing). Closes bz#695452 Signed-off-by: Denys Vlasenko <dvlasenk@redhat.com>
* install-debuginfo: minor fix to help textJiri Moskovcak2011-04-261-1/+1
|
* fixed trac#223: regression: abrt-action-install-debuginfo.py --help display ↵Jiri Moskovcak2011-04-261-13/+11
| | | | is wrong
* Make abrt-action-list-dsos.py take -m maps -o dsos params; and ↵Denys Vlasenko2011-04-221-6/+7
| | | | | | abrt-action-analyze-core.py to take -o build_ids param Signed-off-by: Denys Vlasenko <dvlasenk@redhat.com>
* abrt-action-install-debuginfo.py: don't die on some Yum exceptions. closes ↵Denys Vlasenko2011-04-211-7/+30
| | | | | | bz#681281 Signed-off-by: Denys Vlasenko <dvlasenk@redhat.com>
* split abrt-action-install-debuginfo into two apps rhbz#692064Jiri Moskovcak2011-04-141-62/+8
| | | | | | | - the first part analyzes the coredump and writes the required build-ids into a file - the second app reads the file and tries to find the debuginfo packages for build-ids
* better messages in abrt-action-install-debuginfo and bugzilla descriptionDenys Vlasenko2011-03-161-5/+5
| | | | 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>
* gui-wizard-gtk: use fixed font for backtrace and log textviewsDenys Vlasenko2011-02-241-5/+4
| | | | Signed-off-by: Denys Vlasenko <dvlasenk@redhat.com>
* abrt-action-generate-backtrace/install-debuginfo: a bit better loggingDenys Vlasenko2011-02-231-67/+64
| | | | Signed-off-by: Denys Vlasenko <dvlasenk@redhat.com>
* abrt-action-install-debuginfo.py: use /tmp for nowDenys Vlasenko2011-02-221-1/+3
| | | | Signed-off-by: Denys Vlasenko <dvlasenk@redhat.com>
* correct rights on /var/run/abrt; improve new GUI a bitDenys Vlasenko2011-02-221-3/+3
| | | | Signed-off-by: Denys Vlasenko <dvlasenk@redhat.com>
* abrt-action-install-debuginfo.py: do not truncate package names on outputDenys Vlasenko2011-02-221-6/+6
| | | | Signed-off-by: Denys Vlasenko <dvlasenk@redhat.com>
* abrt-action-install-debuginfo: disallow overriding paths to writable dirsDenys Vlasenko2011-02-221-6/+3
| | | | Signed-off-by: Denys Vlasenko <dvlasenk@redhat.com>
* run abrt-action-install-debuginfo.py using trivial sgid wrapperJiri Moskovcak2011-02-211-4/+7
| | | | | Signed-off-by: Jiri Moskovcak <jmoskovc@redhat.com> Signed-off-by: Denys Vlasenko <dvlasenk@redhat.com>
* don't try to remove the tmp dir if it's not createdJiri Moskovcak2011-01-251-3/+3
| | | | | - if no package is found the tmp dir is not created, but we tried to remove it anyway which failed
* new debuginfo install script rewritten in pythonJiri Moskovcak2010-11-291-0/+472
- using python alows us to use the yum API, so we can read the progress, file sizes, requires disk space, etc.. and seems to be faster the using yum --whatprovides + yumdownloader - it's easier to translate - we can drop dependency on yum-utils