comparison debian/dropbear.prerm @ 118:5312ca05ed48 private-rez

propagate of 717950f4061f1123659ee87c7c168805af920ab7 and 839f98f136788cc1466e4641bf796f96040a085d from branch 'matt.dbclient.authpam' to 'matt.dbclient.rez'
author Matt Johnston <matt@ucc.asn.au>
date Sun, 12 Sep 2004 04:56:50 +0000
parents b0316ce64e4b
children 3ee0c2f85e1e
comparison
equal deleted inserted replaced
57:3b2a5a1c4347 118:5312ca05ed48
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