* debian/source_byobu.py:

- Do not include the user's .screenrc in the apport generated crash report
This commit is contained in:
Dustin Kirkland 2019-06-01 16:21:38 -05:00
commit 6acb5e87d5
2 changed files with 4 additions and 1 deletions

4
debian/changelog vendored
View file

@ -21,6 +21,10 @@ byobu (5.128) unreleased; urgency=medium
* usr/lib/byobu/wifi_quality: * usr/lib/byobu/wifi_quality:
- prefer iwconfig over iw for now, iw is not working for me - prefer iwconfig over iw for now, iw is not working for me
[ Paride Legovini ]
* debian/source_byobu.py:
- Do not include the user's .screenrc in the apport generated crash report
[ Jeffery To ] [ Jeffery To ]
* usr/bin/byobu-disable-prompt.in, * usr/bin/byobu-disable-prompt.in,
usr/bin/byobu-janitor.in: usr/bin/byobu-janitor.in:

View file

@ -10,4 +10,3 @@ from os import path
def add_info(report): def add_info(report):
attach_related_packages(report, ['byobu*', 'screen*']) attach_related_packages(report, ['byobu*', 'screen*'])
report['Binaries'] = command_output(['sh', '-c', 'ls -alF /usr/bin/screen* /usr/bin/byobu*']) report['Binaries'] = command_output(['sh', '-c', 'ls -alF /usr/bin/screen* /usr/bin/byobu*'])
attach_file_if_exists(report, path.expanduser('~/.screenrc'), 'ScreenRC')