Server IP : 209.38.156.173 / Your IP : 216.73.216.122 [ Web Server : Apache/2.4.52 (Ubuntu) System : Linux lakekumayuhotel 5.15.0-136-generic #147-Ubuntu SMP Sat Mar 15 15:53:30 UTC 2025 x86_64 User : root ( 0) PHP Version : 8.1.2-1ubuntu2.22 Disable Function : NONE Domains : 2 Domains MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /usr/share/apport/package-hooks/ |
Upload File : |
""" 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" )