- use findmnt to get mountpoint abrt_harvest_vmcore.py - correct handling of DebuginfoLocation in a-a-install-debuginfo - koops: do not assume version has 3 levels - a-dump-journal-xorg: add '_COMM=gnome-shell' to journal filter Resolves: #1334084, #1343826 Signed-off-by: Matej Habrnal <mhabrnal@redhat.com>
39 lines
1.5 KiB
Diff
39 lines
1.5 KiB
Diff
From a2bdf944c8855dd53b4df5f6829442f9f2f6bd14 Mon Sep 17 00:00:00 2001
|
|
From: Matej Habrnal <mhabrnal@redhat.com>
|
|
Date: Wed, 8 Jun 2016 17:50:18 +0200
|
|
Subject: [PATCH] a-a-install-debuginfo: Exception may not have an argument
|
|
errno
|
|
|
|
Also BrokenPipe error can appear even in download_class(), moving it to try
|
|
block.
|
|
|
|
Related to #1343826, #1343664
|
|
|
|
Signed-off-by: Matej Habrnal <mhabrnal@redhat.com>
|
|
---
|
|
src/plugins/abrt-action-install-debuginfo.in | 6 +++---
|
|
1 file changed, 3 insertions(+), 3 deletions(-)
|
|
|
|
diff --git a/src/plugins/abrt-action-install-debuginfo.in b/src/plugins/abrt-action-install-debuginfo.in
|
|
index a3ef3da..be45bc6 100644
|
|
--- a/src/plugins/abrt-action-install-debuginfo.in
|
|
+++ b/src/plugins/abrt-action-install-debuginfo.in
|
|
@@ -236,12 +236,12 @@ if __name__ == "__main__":
|
|
sys.exit(RETURN_FAILURE)
|
|
|
|
# TODO: should we pass keep_rpms=keeprpms to DebugInfoDownload here??
|
|
- downloader = download_class(cache=cachedirs[0], tmp=TMPDIR,
|
|
+ try:
|
|
+ downloader = download_class(cache=cachedirs[0], tmp=TMPDIR,
|
|
noninteractive=noninteractive,
|
|
repo_pattern=repo_pattern)
|
|
- try:
|
|
result = downloader.download(missing, download_exact_files=exact_fls)
|
|
- except Exception as ex:
|
|
+ except OSError as ex:
|
|
if ex.errno == errno.EPIPE:
|
|
clean_up(TMPDIR, silent=True)
|
|
exit(RETURN_FAILURE)
|
|
--
|
|
2.7.4
|
|
|