/usr/share/apport/package-hooks/kubuntu-driver-manager.py is in kubuntu-driver-manager 15.10ubuntu3.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 | # apport package hook for ubuntu-drivers-common
# (c) 2012 Canonical Ltdt.
# Author: Martin Pitt <martin.pitt@ubuntu.com>
# (c) 2014 Rohan Garg <rohangarg@kubuntu.org>
import apport.hookutils
def add_info(report, ui):
report['UbuntuDriversDebug'] = apport.hookutils.command_output(['ubuntu-drivers', 'debug'])
report['UbuntuDriversList'] = apport.hookutils.command_output(['ubuntu-drivers', 'devices'])
|