summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorColin Watson <cjwatson@debian.org>2013-05-21 17:53:45 +0100
committerColin Watson <cjwatson@debian.org>2013-05-21 17:53:45 +0100
commitcc7c64fe532ac804ce6c65d701a32b614cc0b26a (patch)
treef01d041d890444d19138f4fea09d09b6484ef6bd
parentc4987c983e64fa6194fd15b668fc714e69f600f5 (diff)
Change start condition of Upstart job to be just the standard "runlevel
[2345]", rather than "filesystem or runlevel [2345]"; the latter makes it unreasonably difficult to ensure that urandom starts before ssh, and is not really necessary since one of static-network-up and failsafe-boot is guaranteed to happen and will trigger entry to the default runlevel, and we don't care about ssh starting before the network (LP: #1098299).
-rw-r--r--debian/changelog11
-rw-r--r--debian/openssh-server.ssh.upstart2
2 files changed, 12 insertions, 1 deletions
diff --git a/debian/changelog b/debian/changelog
index 1c8490e8a..07aeeb4d1 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,14 @@
1openssh (1:6.2p2-2) UNRELEASED; urgency=low
2
3 * Change start condition of Upstart job to be just the standard "runlevel
4 [2345]", rather than "filesystem or runlevel [2345]"; the latter makes
5 it unreasonably difficult to ensure that urandom starts before ssh, and
6 is not really necessary since one of static-network-up and failsafe-boot
7 is guaranteed to happen and will trigger entry to the default runlevel,
8 and we don't care about ssh starting before the network (LP: #1098299).
9
10 -- Colin Watson <cjwatson@debian.org> Tue, 21 May 2013 17:49:35 +0100
11
1openssh (1:6.2p2-1) unstable; urgency=low 12openssh (1:6.2p2-1) unstable; urgency=low
2 13
3 * New upstream release (http://www.openssh.com/txt/release-6.2p2): 14 * New upstream release (http://www.openssh.com/txt/release-6.2p2):
diff --git a/debian/openssh-server.ssh.upstart b/debian/openssh-server.ssh.upstart
index d8342b9c1..21a6bc50b 100644
--- a/debian/openssh-server.ssh.upstart
+++ b/debian/openssh-server.ssh.upstart
@@ -4,7 +4,7 @@
4 4
5description "OpenSSH server" 5description "OpenSSH server"
6 6
7start on filesystem or runlevel [2345] 7start on runlevel [2345]
8stop on runlevel [!2345] 8stop on runlevel [!2345]
9 9
10respawn 10respawn