summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--debian/changelog4
-rw-r--r--debian/openssh-client.apport6
-rw-r--r--debian/openssh-server.apport2
3 files changed, 9 insertions, 3 deletions
diff --git a/debian/changelog b/debian/changelog
index 955cc4f73..740b5037c 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,7 +1,9 @@
1openssh (1:8.0p1-4) UNRELEASED; urgency=medium 1openssh (1:8.0p1-4) UNRELEASED; urgency=medium
2 2
3 * Use debhelper-compat instead of debian/compat. 3 * Use debhelper-compat instead of debian/compat.
4 * Remove #! lines from apport hooks. 4 * debian/*.apport:
5 - Remove #! lines.
6 - Avoid star imports.
5 7
6 -- Colin Watson <cjwatson@debian.org> Sat, 03 Aug 2019 12:49:17 +0100 8 -- Colin Watson <cjwatson@debian.org> Sat, 03 Aug 2019 12:49:17 +0100
7 9
diff --git a/debian/openssh-client.apport b/debian/openssh-client.apport
index ca27da117..8b09bb6c0 100644
--- a/debian/openssh-client.apport
+++ b/debian/openssh-client.apport
@@ -10,7 +10,11 @@ option) any later version. See http://www.gnu.org/copyleft/gpl.html for
10the full text of the license. 10the full text of the license.
11''' 11'''
12 12
13from apport.hookutils import * 13from apport.hookutils import (
14 attach_conffiles,
15 attach_related_packages,
16 command_output,
17)
14 18
15def add_info(report, ui): 19def add_info(report, ui):
16 response = ui.yesno("The contents of your /etc/ssh/ssh_config file " 20 response = ui.yesno("The contents of your /etc/ssh/ssh_config file "
diff --git a/debian/openssh-server.apport b/debian/openssh-server.apport
index 687daef97..58631be2d 100644
--- a/debian/openssh-server.apport
+++ b/debian/openssh-server.apport
@@ -10,7 +10,7 @@ option) any later version. See http://www.gnu.org/copyleft/gpl.html for
10the full text of the license. 10the full text of the license.
11''' 11'''
12 12
13from apport.hookutils import * 13from apport.hookutils import root_command_output
14 14
15def add_info(report, ui): 15def add_info(report, ui):
16 response = ui.yesno("The contents of your /etc/ssh/sshd_config file " 16 response = ui.yesno("The contents of your /etc/ssh/sshd_config file "