1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
|
'''apport package hook for Breezy'''
# Copyright (c) 2009, 2010 Canonical Ltd.
# Author: Matt Zimmerman <mdz@canonical.com>
# and others
from apport.hookutils import *
import os
brz_log = os.path.expanduser('~/.brz.log')
dot_brz = os.path.expanduser('~/.config/breezy')
def _add_log_tail(report):
# may have already been added in-process
if 'BrzLogTail' in report:
return
brz_log_lines = open(brz_log).readlines()
brz_log_lines.reverse()
brz_log_tail = []
blanks = 0
for line in brz_log_lines:
if line == '\n':
blanks += 1
brz_log_tail.append(line)
if blanks >= 2:
break
brz_log_tail.reverse()
report['BrzLogTail'] = ''.join(brz_log_tail)
def add_info(report):
_add_log_tail(report)
if 'BrzPlugins' not in report:
# may already be present in-process
report['BrzPlugins'] = command_output(['brz', 'plugins', '-v'])
# by default assume brz crashes are upstream bugs; this relies on
# having a brz entry under /etc/apport/crashdb.conf.d/
report['CrashDB'] = 'brz'
# these may contain some sensitive info (smtp_passwords)
# TODO: strip that out and attach the rest
#attach_file_if_exists(report,
# os.path.join(dot_brz, 'breezy.conf', 'BrzConfig')
#attach_file_if_exists(report,
# os.path.join(dot_brz, 'locations.conf', 'BrzLocations')
# vim: expandtab shiftwidth=4
|