| Server IP : 185.11.201.71 / Your IP : 192.168.7.18 Web Server : Apache/2.4.29 (Ubuntu) System : Linux tech-virtual-machine 4.15.0-213-generic #224-Ubuntu SMP Mon Jun 19 13:30:12 UTC 2023 x86_64 User : tech ( 1000) PHP Version : 7.4.28 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare, MySQL : OFF | cURL : OFF | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /usr/share/apport/package-hooks/ |
Upload File : |
import os, apport.packaging, re
import glob
from apport.hookutils import *
def add_info(report):
# the issue is not in the gnome-control-center code so reassign
if "Stacktrace" in report and "/control-center-1/" in report["Stacktrace"]:
for words in report["Stacktrace"].split():
if words.startswith("/usr/lib/") and "/control-center-1/" in words:
if apport.packaging.get_file_package(words) != 'gnome-control-center':
report.add_package_info(apport.packaging.get_file_package(words))
return
component = re.compile("lib(\w*).so").search(words).groups(1)[0]
report['Title'] = '[%s]: %s' % (component, report.get('Title', report.standard_title()))
report['Tags'] = '%s %s' % (report.get('Tags', ""), component)
break # Stop on the first .so that's the interesting one
# collect informations on the /usr/lib/control-center-1 components
plugin_packages = set()
for paneldir in (['/usr/lib/control-center-1'] + glob.glob('/usr/lib/*/control-center-1')):
for dirpath, dirnames, filenames in os.walk(paneldir):
for filename in filenames:
path = os.path.join(dirpath, filename)
package = apport.packaging.get_file_package(path)
if package == 'gnome-control-center':
continue
if not package:
continue
plugin_packages.add(package)
if plugin_packages:
report["usr_lib_gnome-control-center"] = package_versions(*sorted(plugin_packages))