blob: f70b41f4eee50f9ad988bd4657ca2687cd4c9037 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#! /bin/sh
#
# $NetBSD: DEINSTALL,v 1.2 2000/09/03 13:22:31 wiz 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
|