blob: ee1aa040cf649bccbedc15149da4eb951c1ddda1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#! /bin/sh
#
# $NetBSD: DEINSTALL,v 1.1 2000/01/27 17:13:02 hubertf Exp $
#
case "$2" in
DEINSTALL) cat <<EOF
=============================================================
Note that ssh configuration, key, and random-seed files
(@SSH_CONF_DIR@/ssh*) are not removed in the deinstallation
process. You should remove those by hand, if you no longer
need them.
=============================================================
EOF
;;
esac
|