annotate debian/dropbear-server.postrm @ 549:7f552ea5bf72
maemo
merge of '3450609f92928775614418f40dd44ed5393d9de4'
and '6a58c90036c543b4d992489843a999156f665e61'
author |
Matt Johnston <matt@ucc.asn.au> |
date |
Wed, 01 Jul 2009 05:14:51 +0000 |
parents |
8cc0598b0b9a |
children |
|
rev |
line source |
522
|
1 #! /bin/sh |
|
2 set -e |
|
3 |
|
4 test "$1" = 'purge' || exit 0 |
|
5 if test -e /etc/dropbear; then |
|
6 rm -f /etc/dropbear/dropbear_rsa_host_key |
|
7 rm -f /etc/dropbear/dropbear_dss_host_key |
|
8 rmdir --ignore-fail-on-non-empty /etc/dropbear |
|
9 fi |
|
10 update-rc.d dropbear remove >/dev/null |
|
11 rm -f /etc/default/dropbear |
|
12 rm -rf /etc/dropbear/supervise /etc/dropbear/log/supervise |