Linux ip-172-26-7-228 5.4.0-1103-aws #111~18.04.1-Ubuntu SMP Tue May 23 20:04:10 UTC 2023 x86_64
Your IP : 3.15.239.207
'''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*'])
attach_file_if_exists(report, path.expanduser('~/.screenrc'), 'ScreenRC')
|