summaryrefslogtreecommitdiff
path: root/debian
diff options
context:
space:
mode:
Diffstat (limited to 'debian')
-rw-r--r--debian/changelog6
-rw-r--r--debian/patches/series1
-rw-r--r--debian/patches/ssh-copy-id-portable.patch20
3 files changed, 27 insertions, 0 deletions
diff --git a/debian/changelog b/debian/changelog
index 5c1a5c11c..8cb2afd10 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
1openssh (1:6.2p2-4) UNRELEASED; urgency=low
2
3 * Fix non-portable shell in ssh-copy-id (closes: #711162).
4
5 -- Colin Watson <cjwatson@debian.org> Fri, 31 May 2013 16:20:49 +0100
6
1openssh (1:6.2p2-3) unstable; urgency=low 7openssh (1:6.2p2-3) unstable; urgency=low
2 8
3 * If the running init daemon is Upstart, then, on the first upgrade to 9 * If the running init daemon is Upstart, then, on the first upgrade to
diff --git a/debian/patches/series b/debian/patches/series
index 6f2da2944..6d6020805 100644
--- a/debian/patches/series
+++ b/debian/patches/series
@@ -26,6 +26,7 @@ shell-path.patch
26dnssec-sshfp.patch 26dnssec-sshfp.patch
27auth-log-verbosity.patch 27auth-log-verbosity.patch
28mention-ssh-keygen-on-keychange.patch 28mention-ssh-keygen-on-keychange.patch
29ssh-copy-id-portable.patch
29 30
30# Versioning 31# Versioning
31package-versioning.patch 32package-versioning.patch
diff --git a/debian/patches/ssh-copy-id-portable.patch b/debian/patches/ssh-copy-id-portable.patch
new file mode 100644
index 000000000..9583eab4b
--- /dev/null
+++ b/debian/patches/ssh-copy-id-portable.patch
@@ -0,0 +1,20 @@
1Description: Fix non-portable shell in ssh-copy-id
2Author: Colin Watson <cjwatson@debian.org>
3Bug: https://bugzilla.mindrot.org/show_bug.cgi?id=2117
4Bug-Debian: http://bugs.debian.org/711162
5Forwarded: https://bugzilla.mindrot.org/show_bug.cgi?id=2117
6Last-Update: 2013-06-05
7
8Index: b/contrib/ssh-copy-id
9===================================================================
10--- a/contrib/ssh-copy-id
11+++ b/contrib/ssh-copy-id
12@@ -165,7 +165,7 @@
13
14 eval set -- "$SAVEARGS"
15
16-if [ $# == 0 ] ; then
17+if [ $# = 0 ] ; then
18 usage
19 fi
20 if [ $# != 1 ] ; then