mirror of
https://github.com/dustinkirkland/byobu.git
synced 2024-11-13 19:50:07 -08:00
67a2bed597
Fixes LP: #1827202 (CVE-2019-7306).
13 lines
339 B
Python
13 lines
339 B
Python
'''apport package hook for byobu
|
|
|
|
(c) 2009 Canonical Ltd.
|
|
Author: Dustin Kirkland <kirkland@byobu.org>
|
|
'''
|
|
|
|
from apport.hookutils import *
|
|
from os import path
|
|
|
|
def add_info(report):
|
|
attach_related_packages(report, ['byobu*', 'screen*'])
|
|
report['Binaries'] = command_output(['sh', '-c', 'ls -alF /usr/bin/screen* /usr/bin/byobu*'])
|