summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJiri Moskovcak <jmoskovc@redhat.com>2011-02-22 13:36:45 +0100
committerJiri Moskovcak <jmoskovc@redhat.com>2011-02-22 13:36:45 +0100
commit21546071bd6b5511fdb0eeabb36d11952321855c (patch)
tree5111924b81aeabd3175ca53792556f3ea09bb16a /src
parent1f938d9e5aa346b75e4f815ccf4a3dc0bc9a3250 (diff)
parentf085ee31f7e264fb3c288dc7ad7f88118d275318 (diff)
downloadabrt-21546071bd6b5511fdb0eeabb36d11952321855c.tar.gz
abrt-21546071bd6b5511fdb0eeabb36d11952321855c.tar.xz
abrt-21546071bd6b5511fdb0eeabb36d11952321855c.zip
Merge branch 'master' of ssh://git.fedorahosted.org/git/abrt
Diffstat (limited to 'src')
-rwxr-xr-xsrc/plugins/abrt-action-install-debuginfo.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/plugins/abrt-action-install-debuginfo.py b/src/plugins/abrt-action-install-debuginfo.py
index f9d1f50f..14838168 100755
--- a/src/plugins/abrt-action-install-debuginfo.py
+++ b/src/plugins/abrt-action-install-debuginfo.py
@@ -450,7 +450,9 @@ if __name__ == "__main__":
if not cachedir:
cachedir = "/var/cache/abrt-di"
if not tmpdir:
- tmpdir = "/var/run/abrt/install-debuginfo-%s.%u" % (time.strftime("%Y-%m-%d-%H:%M:%S"), os.getpid())
+ # security people prefer temp subdirs in app's private dir, like /var/run/abrt
+ # for now, we use /tmp...
+ tmpdir = "/tmp/abrt-tmp-debuginfo-%s.%u" % (time.strftime("%Y-%m-%d-%H:%M:%S"), os.getpid())
b_ids = extract_info_from_core(core)
if b_ids == RETURN_FAILURE: