first commit

This commit is contained in:
STP
2019-11-26 21:36:24 +01:00
commit d9ad30ccf3
2899 changed files with 168823 additions and 0 deletions

View 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.).

View File

@ -0,0 +1 @@
/usr/bin/wine-preloader

View File

@ -0,0 +1,2 @@
/usr/lib/firefox/firefox
/usr/lib/firefox/plugin-container

View File

@ -0,0 +1,2 @@
/usr/lib/thunderbird/thunderbird
/usr/lib/thunderbird/plugin-container

View 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'
},
}

View File

@ -0,0 +1,6 @@
indicator_sound = {
'impl': 'launchpad',
'project': 'indicator-sound',
'bug_pattern_base': None,
}

View File

@ -0,0 +1,5 @@
plank = {
'impl' : 'launchpad',
'project' : 'plank',
'bug_pattern_base' : None,
}

View File

@ -0,0 +1,5 @@
signon = {
'impl' : 'launchpad',
'project' : 'online-accounts-signond',
'bug_pattern_base' : None,
}

View File

@ -0,0 +1,3 @@
LP-PPA-ubuntu-mozilla-daily
LP-PPA-ubuntu-mozilla-daily-firefox-aurora
LP-PPA-mozillateam-firefox-next

View File

@ -0,0 +1,3 @@
LP-PPA-ubuntu-mozilla-daily
LP-PPA-ubuntu-mozilla-daily-thunderbird-aurora
LP-PPA-mozillateam-thunderbird-next