Mercurial > dropbear
comparison debian/dropbear.prerm @ 70:b0316ce64e4b
Merging in the changes from 0.41-0.43 main Dropbear tree
author | Matt Johnston <matt@ucc.asn.au> |
---|---|
date | Thu, 12 Aug 2004 16:41:58 +0000 |
parents | |
children | 3ee0c2f85e1e |
comparison
equal
deleted
inserted
replaced
69:59d16db56e9f | 70:b0316ce64e4b |
---|---|
1 #!/bin/sh | |
2 set -u | |
3 | |
4 test "$1" = 'remove' || test "$1" = 'deconfigure' || exit 0 | |
5 if test -x /etc/init.d/dropbear; then | |
6 if test -x /usr/sbin/invoke-rc.d; then | |
7 invoke-rc.d dropbear stop | |
8 else | |
9 /etc/init.d/dropbear stop | |
10 fi | |
11 fi |