diff options
Diffstat (limited to 'debian/openssh-server.postrm')
-rw-r--r-- | debian/openssh-server.postrm | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/debian/openssh-server.postrm b/debian/openssh-server.postrm new file mode 100644 index 000000000..88e28a91e --- /dev/null +++ b/debian/openssh-server.postrm | |||
@@ -0,0 +1,27 @@ | |||
1 | #!/bin/sh | ||
2 | set -e | ||
3 | |||
4 | #DEBHELPER# | ||
5 | |||
6 | case $1 in | ||
7 | purge) | ||
8 | # Remove all non-conffiles that ssh might create, so that we | ||
9 | # can smoothly remove /etc/ssh if and only if the user | ||
10 | # hasn't dropped some other files in there. Conffiles have | ||
11 | # already been removed at this point. | ||
12 | rm -f /etc/ssh/ssh_host_key /etc/ssh/ssh_host_key.pub | ||
13 | rm -f /etc/ssh/ssh_host_rsa_key /etc/ssh/ssh_host_rsa_key.pub | ||
14 | rm -f /etc/ssh/ssh_host_dsa_key /etc/ssh/ssh_host_dsa_key.pub | ||
15 | rm -f /etc/ssh/ssh_host_ecdsa_key /etc/ssh/ssh_host_ecdsa_key.pub | ||
16 | rm -f /etc/ssh/ssh_host_ed25519_key /etc/ssh/ssh_host_ed25519_key.pub | ||
17 | rm -f /etc/ssh/sshd_config | ||
18 | rm -f /etc/ssh/sshd_not_to_be_run | ||
19 | rmdir --ignore-fail-on-non-empty /etc/ssh | ||
20 | |||
21 | if which deluser >/dev/null 2>&1; then | ||
22 | deluser --quiet sshd > /dev/null || true | ||
23 | fi | ||
24 | ;; | ||
25 | esac | ||
26 | |||
27 | exit 0 | ||