\x89PNG\r\n\x1a\n\x00\x00\x00\x0DIHDR\x00\x00\x00\x01\x00 \x00\x00\x01\x08\x06\x00\x00\x00\x1F\x15\xC4\x89\x00\x00\x00 \x0AIDATx\x9Ccb\x00\x00\x00\x06\x00\x03\x1A\x05\x9D\x00\x00 \x00\x00IEND\xAE\x42\x60\x82
| Path : /usr/share/apport/package-hooks/ |
|
B-Con CMD Config cPanel C-Rdp D-Log Info Jump Mass Ransom Symlink vHost Zone-H |
| Current File : //usr/share/apport/package-hooks/ubuntu-desktop-installer.py |
"""
Send reports about ubuntu-desktop-installer to the correct Launchpad project.
"""
import os
from apport import hookutils
def add_info(report, ui):
udilog = os.path.realpath("/var/log/installer/ubuntu_desktop_installer.log")
hookutils.attach_file_if_exists(report, udilog, "UdiLog")
report['SourcePackage'] = 'ubuntu-desktop-installer'
# rewrite this section so the report goes to the project in Launchpad
report[
"CrashDB"
] = """{
"impl": "launchpad",
"project": "ubuntu-desktop-installer",
"bug_pattern_url": "http://people.canonical.com/~ubuntu-archive/bugpatterns/bugpatterns.xml"
}"""
subiquitylog = os.path.realpath("/var/log/installer/subiquity-server-debug.log")
hookutils.attach_file_if_exists(report, subiquitylog, "SubiquityLog")
hookutils.attach_file_if_exists(
report, "/var/log/installer/subiquity-curtin-install.conf", "CurtinConfig"
)
hookutils.attach_file_if_exists(
report, "/var/log/curtin/install.log", "CurtinLog"
)
hookutils.attach_file_if_exists(
report, "/var/log/curtin/curtin-error-logs.tar", "CurtinError"
)
hookutils.attach_file_if_exists(
report, "/var/log/installer/block/probe-data.json", "ProbeData"
)