%PDF-1.5 %���� ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY
| Server IP : 14.207.165.8 / Your IP : 216.73.216.101 Web Server : Apache/2.4.18 (Ubuntu) System : Linux 246 4.4.0-210-generic #242-Ubuntu SMP Fri Apr 16 09:57:56 UTC 2021 x86_64 User : root ( 0) PHP Version : 7.0.33-0ubuntu0.16.04.16 Disable Function : exec,passthru,shell_exec,system,proc_open,popen,pcntl_exec MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /proc/thread-self/root/usr/share/apport/package-hooks/ |
Upload File : |
# -*- Mode: Python; indent-tabs-mode: nil; tab-width: 4; coding: utf-8 -*-
'''apport package hook for update-manager
(c) 2011 Canonical Ltd.
Author: Brian Murray <brian@ubuntu.com>
'''
import os
import re
from apport.hookutils import (
attach_gsettings_package, attach_root_command_outputs,
attach_file_if_exists, recent_syslog)
def add_info(report, ui):
problem_type = report.get("ProblemType", None)
if problem_type == "Bug":
response = ui.yesno("Is the issue you are reporting one you \
encountered when upgrading Ubuntu from one release to another?")
else:
response = None
if response:
os.execlp('apport-bug', 'apport-bug', 'ubuntu-release-upgrader')
else:
attach_gsettings_package(report, 'update-manager')
attach_file_if_exists(report, '/var/log/apt/history.log',
'DpkgHistoryLog.txt')
attach_file_if_exists(report, '/var/log/apt/term.log',
'DpkgTerminalLog.txt')
attach_root_command_outputs(
report,
{'CurrentDmesg.txt':
'dmesg | comm -13 --nocheck-order /var/log/dmesg -'})
report["Aptdaemon"] = recent_syslog(re.compile("AptDaemon"))