17 lines
433 B
Bash
17 lines
433 B
Bash
#! /bin/sh
|
|
#
|
|
# $NetBSD: DEINSTALL,v 1.1 2001/11/01 01:17:48 zuntum 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
|