summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorColin Watson <cjwatson@debian.org>2004-08-02 18:21:33 +0000
committerColin Watson <cjwatson@debian.org>2004-08-02 18:21:33 +0000
commit4d6e7c45fdc81bcc1076b68d7b10c1dfbfaaa5be (patch)
treed1bea708959f715dff283fb051ee18ab1e88dc93
parenta3f9698ee0c6ef94d0de515bb915dd77372920eb (diff)
Remove /etc/ssh/sshd_not_to_be_run on purge of openssh-server. For now
(until sarge+2) it's still honoured to avoid breaking existing configurations, but the right approach is now to remove the openssh-server package if you don't want to run the server. Add a NEWS item to that effect.
-rw-r--r--debian/NEWS11
-rw-r--r--debian/changelog5
-rw-r--r--debian/openssh-server.postrm1
3 files changed, 17 insertions, 0 deletions
diff --git a/debian/NEWS b/debian/NEWS
index 242d719ff..0c645d103 100644
--- a/debian/NEWS
+++ b/debian/NEWS
@@ -1,3 +1,14 @@
1openssh (1:3.8.1p1-9) UNRELEASED; urgency=low
2
3 The ssh package has been split into openssh-client and openssh-server. If
4 you had previously requested that the sshd server should not be run, then
5 that request will still be honoured. However, the recommended approach is
6 now to remove the openssh-server package if you do not want to run sshd.
7 You can remove the old /etc/ssh/sshd_not_to_be_run marker file after doing
8 that.
9
10 -- Colin Watson <cjwatson@debian.org> Sat, 31 Jul 2004 03:01:19 +0100
11
1openssh (1:3.5p1-1) unstable; urgency=low 12openssh (1:3.5p1-1) unstable; urgency=low
2 13
3 This version of OpenSSH disables the environment option for public keys by 14 This version of OpenSSH disables the environment option for public keys by
diff --git a/debian/changelog b/debian/changelog
index 38a7c67ae..1c81c1387 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -13,6 +13,11 @@ openssh (1:3.8.1p1-9) UNRELEASED; urgency=low
13 and ssh/user_environment_tell. 13 and ssh/user_environment_tell.
14 * Add a heuristic to try to make sure the sshd_config upgrade to >= 3.7 14 * Add a heuristic to try to make sure the sshd_config upgrade to >= 3.7
15 happens even though we don't know what version we're upgrading from. 15 happens even though we don't know what version we're upgrading from.
16 * Remove /etc/ssh/sshd_not_to_be_run on purge of openssh-server. For now
17 (until sarge+2) it's still honoured to avoid breaking existing
18 configurations, but the right approach is now to remove the
19 openssh-server package if you don't want to run the server. Add a NEWS
20 item to that effect.
16 21
17 -- Colin Watson <cjwatson@debian.org> Sat, 31 Jul 2004 03:01:19 +0100 22 -- Colin Watson <cjwatson@debian.org> Sat, 31 Jul 2004 03:01:19 +0100
18 23
diff --git a/debian/openssh-server.postrm b/debian/openssh-server.postrm
index 862c51520..e7a437260 100644
--- a/debian/openssh-server.postrm
+++ b/debian/openssh-server.postrm
@@ -12,6 +12,7 @@ then
12 rm -f /etc/ssh/ssh_host_rsa_key /etc/ssh/ssh_host_rsa_key.pub 12 rm -f /etc/ssh/ssh_host_rsa_key /etc/ssh/ssh_host_rsa_key.pub
13 rm -f /etc/ssh/ssh_host_dsa_key /etc/ssh/ssh_host_dsa_key.pub 13 rm -f /etc/ssh/ssh_host_dsa_key /etc/ssh/ssh_host_dsa_key.pub
14 rm -f /etc/ssh/sshd_config 14 rm -f /etc/ssh/sshd_config
15 rm -f /etc/ssh/sshd_not_to_be_run
15 rmdir --ignore-fail-on-non-empty /etc/ssh 16 rmdir --ignore-fail-on-non-empty /etc/ssh
16fi 17fi
17 18