Codebase list system-config-printer / 64ca873
Install apport hook on Ubuntu Jeremy Bicha 2 years ago
2 changed file(s) with 17 addition(s) and 0 deletion(s). Raw diff Collapse all Expand all
2222
2323 execute_after_dh_clean:
2424 rm -f dbus/org.fedoraproject.Config.Printing.service
25
26 ifeq (yes,$(shell dpkg-vendor --derives-from Ubuntu && echo yes))
27 execute_after_dh_install:
28 dh_install -psystem-config-printer-common debian/source_system-config-printer.py \
29 usr/share/apport/package-hooks/
30 endif
0 '''apport package hook for system-config-printer
1
2 (c) 2009 Canonical Ltd.
3 Author: Brian Murray <brian@ubuntu.com>
4 '''
5
6 from apport.hookutils import *
7
8 def add_info(report):
9 attach_hardware(report)
10 attach_printing(report)