18 lines
434 B
Bash
18 lines
434 B
Bash
#! /bin/sh
|
|
#
|
|
# $NetBSD: DEINSTALL,v 1.2 1998/08/07 11:13:50 agc 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
|