blob: 4bfc80cc99bafacae4861ff6e9cfdefbf8a6f98a (
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.1.1 2000/04/21 10:57:33 mjl Exp $
#
case "$2" in
DEINSTALL) cat <<EOF
=============================================================
Note that the configuration and spool dir (/var/spool/smtpd)
are not removed in the deinstallation process. You should
remove those by hand, if you no longer need them.
=============================================================
EOF
;;
esac
|