1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# map crash database names to CrashDatabase implementations and URLs
default = 'ubuntu'
databases = {
'ubuntu': {
'impl': 'launchpad',
'bug_pattern_base': 'http://people.ubuntu.com/~pitti/bugpatterns',
'distro': 'ubuntu'
},
'fedora': {
'impl': 'rhbugzilla',
'bug_pattern_base': 'http://qa.fedoraproject.org/apport/bugpatterns',
'distro': 'fedora'
},
'debug': {
# for debugging
'impl': 'memory',
'bug_pattern_base': '/tmp',
'distro': 'debug'
},
}
|