blob: e7a9756e98df93433d5d2a4a18eef2aa42e9487c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#! /bin/sh
case "$2" in
DEINSTALL) cat <<EOF
==========================================================================
Note that the FIDOGATE spool directory (/var/spool/fido) and log directory
(/var/log/fido) are NOT deleted by the pkg_delete process. Please remove
these directories and all their contents manually, if they are no longer
needed.
==========================================================================
EOF
;;
esac
|