e0af88e6b2
as news/leafnode. Leafnode is a USENET software package designed for small sites, with a few tens of readers and only a slow link to the net. The work in this package is based on that of Ingolf Steinbach in PR#13830. wiz@ made some suggestions as well. Thanks to both of them.
22 lines
649 B
Bash
22 lines
649 B
Bash
#!/bin/sh
|
|
#
|
|
# $NetBSD: DEINSTALL,v 1.1.1.1 2002/06/16 11:34:26 cjep Exp $
|
|
|
|
case "$2" in
|
|
DEINSTALL) cat <<EOF
|
|
|
|
==========================================================================
|
|
|
|
Note that the leafnode spool, lock and configuration directories
|
|
(@@LEAFNODE_SPOOL@@, @@LEAFNODE_LOCKDIR@@ and @@LEAFNODE_CONFDIR@@)
|
|
are NOT deleted during the package deinstallation. Please remove these
|
|
directories and all their contents manually if they are no longer needed.
|
|
Also, don't forgot to remove any cron jobs associated with leafnode.
|
|
|
|
==========================================================================
|
|
|
|
EOF
|
|
;;
|
|
esac
|
|
|
|
exit 0
|