first commit
This commit is contained in:
4
etc_org/apport/blacklist.d/README.blacklist
Normal file
4
etc_org/apport/blacklist.d/README.blacklist
Normal file
@ -0,0 +1,4 @@
|
||||
# Blacklist for apport
|
||||
# If an executable path appears on any line in any file in
|
||||
# /etc/apport/blacklist.d/, apport will not generate a crash report
|
||||
# for it. Matches are exact only at the moment (no globbing etc.).
|
1
etc_org/apport/blacklist.d/apport
Normal file
1
etc_org/apport/blacklist.d/apport
Normal file
@ -0,0 +1 @@
|
||||
/usr/bin/wine-preloader
|
2
etc_org/apport/blacklist.d/firefox
Normal file
2
etc_org/apport/blacklist.d/firefox
Normal file
@ -0,0 +1,2 @@
|
||||
/usr/lib/firefox/firefox
|
||||
/usr/lib/firefox/plugin-container
|
2
etc_org/apport/blacklist.d/thunderbird
Normal file
2
etc_org/apport/blacklist.d/thunderbird
Normal file
@ -0,0 +1,2 @@
|
||||
/usr/lib/thunderbird/thunderbird
|
||||
/usr/lib/thunderbird/plugin-container
|
38
etc_org/apport/crashdb.conf
Normal file
38
etc_org/apport/crashdb.conf
Normal file
@ -0,0 +1,38 @@
|
||||
# map crash database names to CrashDatabase implementations and URLs
|
||||
|
||||
default = 'ubuntu'
|
||||
|
||||
def get_oem_project():
|
||||
'''Determine OEM project name from Distribution Channel Descriptor
|
||||
|
||||
Return None if it cannot be determined or does not exist.
|
||||
'''
|
||||
try:
|
||||
dcd = open('/var/lib/ubuntu_dist_channel').read()
|
||||
if dcd.startswith('canonical-oem-'):
|
||||
return dcd.split('-')[2]
|
||||
except IOError:
|
||||
return None
|
||||
|
||||
databases = {
|
||||
'ubuntu': {
|
||||
'impl': 'launchpad',
|
||||
'bug_pattern_url': 'http://people.canonical.com/~ubuntu-archive/bugpatterns/bugpatterns.xml',
|
||||
'dupdb_url': 'http://people.canonical.com/~ubuntu-archive/apport-duplicates',
|
||||
'distro': 'ubuntu',
|
||||
'problem_types': ['Bug', 'Package'],
|
||||
'escalation_tag': 'bugpattern-needed',
|
||||
'escalated_tag': 'bugpattern-written',
|
||||
},
|
||||
'canonical-oem': {
|
||||
'impl': 'launchpad',
|
||||
'bug_pattern_url': 'http://people.canonical.com/~ubuntu-archive/bugpatterns/bugpatterns.xml',
|
||||
'project': get_oem_project(),
|
||||
},
|
||||
'debug': {
|
||||
# for debugging
|
||||
'impl': 'memory',
|
||||
'bug_pattern_url': '/tmp/bugpatterns.xml',
|
||||
'distro': 'debug'
|
||||
},
|
||||
}
|
@ -0,0 +1,6 @@
|
||||
|
||||
indicator_sound = {
|
||||
'impl': 'launchpad',
|
||||
'project': 'indicator-sound',
|
||||
'bug_pattern_base': None,
|
||||
}
|
5
etc_org/apport/crashdb.conf.d/plank-crashdb.conf
Normal file
5
etc_org/apport/crashdb.conf.d/plank-crashdb.conf
Normal file
@ -0,0 +1,5 @@
|
||||
plank = {
|
||||
'impl' : 'launchpad',
|
||||
'project' : 'plank',
|
||||
'bug_pattern_base' : None,
|
||||
}
|
5
etc_org/apport/crashdb.conf.d/signon-crashdb.conf
Normal file
5
etc_org/apport/crashdb.conf.d/signon-crashdb.conf
Normal file
@ -0,0 +1,5 @@
|
||||
signon = {
|
||||
'impl' : 'launchpad',
|
||||
'project' : 'online-accounts-signond',
|
||||
'bug_pattern_base' : None,
|
||||
}
|
3
etc_org/apport/native-origins.d/firefox
Normal file
3
etc_org/apport/native-origins.d/firefox
Normal file
@ -0,0 +1,3 @@
|
||||
LP-PPA-ubuntu-mozilla-daily
|
||||
LP-PPA-ubuntu-mozilla-daily-firefox-aurora
|
||||
LP-PPA-mozillateam-firefox-next
|
3
etc_org/apport/native-origins.d/thunderbird
Normal file
3
etc_org/apport/native-origins.d/thunderbird
Normal file
@ -0,0 +1,3 @@
|
||||
LP-PPA-ubuntu-mozilla-daily
|
||||
LP-PPA-ubuntu-mozilla-daily-thunderbird-aurora
|
||||
LP-PPA-mozillateam-thunderbird-next
|
Reference in New Issue
Block a user