diff options
author | Colin Watson <cjwatson@debian.org> | 2013-05-21 17:53:45 +0100 |
---|---|---|
committer | Colin Watson <cjwatson@debian.org> | 2013-05-21 17:53:45 +0100 |
commit | cc7c64fe532ac804ce6c65d701a32b614cc0b26a (patch) | |
tree | f01d041d890444d19138f4fea09d09b6484ef6bd | |
parent | c4987c983e64fa6194fd15b668fc714e69f600f5 (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/changelog | 11 | ||||
-rw-r--r-- | debian/openssh-server.ssh.upstart | 2 |
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 @@ | |||
1 | openssh (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 | |||
1 | openssh (1:6.2p2-1) unstable; urgency=low | 12 | openssh (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 | ||
5 | description "OpenSSH server" | 5 | description "OpenSSH server" |
6 | 6 | ||
7 | start on filesystem or runlevel [2345] | 7 | start on runlevel [2345] |
8 | stop on runlevel [!2345] | 8 | stop on runlevel [!2345] |
9 | 9 | ||
10 | respawn | 10 | respawn |