diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-27 16:03:19 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-27 16:03:19 +0000 |
commit | 9e3a6355172d4502a56db0ad3410b916980e6a76 (patch) | |
tree | 756fd792d3087d62e1dfe774385bac916585593e /debian/apport-hook.py | |
parent | Adding upstream version 14.2. (diff) | |
download | pulseaudio-9e3a6355172d4502a56db0ad3410b916980e6a76.tar.xz pulseaudio-9e3a6355172d4502a56db0ad3410b916980e6a76.zip |
Adding debian version 14.2-2.debian/14.2-2debian
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'debian/apport-hook.py')
-rw-r--r-- | debian/apport-hook.py | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/debian/apport-hook.py b/debian/apport-hook.py new file mode 100644 index 0000000..9af35ae --- /dev/null +++ b/debian/apport-hook.py @@ -0,0 +1,15 @@ +'''apport package hook for pulseaudio + +(c) 2009 Canonical Ltd. +Author: +Matt Zimmerman <mdz@ubuntu.com> + +''' + +from apport.hookutils import * +import re + +def add_info(report): + attach_alsa(report) + recent_syslog(re.compile(r'pulseaudio\[')) + attach_conffiles(report, 'pulseaudio') |