summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorColin Watson <cjwatson@debian.org>2010-01-02 10:23:51 +0000
committerColin Watson <cjwatson@debian.org>2010-01-02 10:23:51 +0000
commit70bfca9fc4b18e9eb9cf916e5329c4631e2e8773 (patch)
tree31a1f6d6618512369d3d4059fe75be0152ffcf12
parentd32d704e052adc1b68656ffaa1b4f22fd5a83fa3 (diff)
Cope with insserv reordering of init script links.
-rw-r--r--debian/changelog1
-rw-r--r--debian/openssh-server.postinst2
2 files changed, 2 insertions, 1 deletions
diff --git a/debian/changelog b/debian/changelog
index a32e07160..5866f288f 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -44,6 +44,7 @@ openssh (1:5.2p1-1) UNRELEASED; urgency=low
44 * Update OpenSSH FAQ to revision 1.110. 44 * Update OpenSSH FAQ to revision 1.110.
45 * Remove ssh/new_config, only needed for direct upgrades from potato which 45 * Remove ssh/new_config, only needed for direct upgrades from potato which
46 are no longer particularly feasible anyway (closes: #420682). 46 are no longer particularly feasible anyway (closes: #420682).
47 * Cope with insserv reordering of init script links.
47 48
48 -- Colin Watson <cjwatson@debian.org> Thu, 12 Nov 2009 21:31:44 +0000 49 -- Colin Watson <cjwatson@debian.org> Thu, 12 Nov 2009 21:31:44 +0000
49 50
diff --git a/debian/openssh-server.postinst b/debian/openssh-server.postinst
index 85a9597ed..120377d0b 100644
--- a/debian/openssh-server.postinst
+++ b/debian/openssh-server.postinst
@@ -407,7 +407,7 @@ remove_old_init_links() {
407 if [ -e /etc/rc2.d/S20ssh ]; then 407 if [ -e /etc/rc2.d/S20ssh ]; then
408 update-rc.d -f ssh remove >/dev/null 2>&1 408 update-rc.d -f ssh remove >/dev/null 2>&1
409 fi 409 fi
410 rm -f /etc/rc0.d/K20ssh /etc/rc6.d/K20ssh 410 rm -f /etc/rc0.d/K??ssh /etc/rc6.d/K??ssh
411} 411}
412 412
413setup_init() { 413setup_init() {