summaryrefslogtreecommitdiff
path: root/news/leafnode/DEINSTALL
diff options
context:
space:
mode:
authorcjep <cjep>2004-01-11 16:45:51 +0000
committercjep <cjep>2004-01-11 16:45:51 +0000
commit75543f8b4a9bbac3aa1153f54889e68df95c315d (patch)
treec8f3d681594537000d69f95acda4a1ec88e7906e /news/leafnode/DEINSTALL
parent6a53d369da12360d85919c8fd95d9627416d7b9a (diff)
downloadpkgsrc-75543f8b4a9bbac3aa1153f54889e68df95c315d.tar.gz
Update of news/leafnode to 1.9.49.
Pkgsrc changes since previous version: * Add the news user if necessary (and be compatible with the INN package). * Use bsd.pkg.install.mk. Vendor changes since previous version: (see the Changelog for more details) * Security fix. Do not lock up when the news header ends prematurely. * Revise some memory handling and catch out-of-memory conditions. * Fixes to syslog handling. * Support XOVER without argument. * Fix SEGV in fetchnews.c.
Diffstat (limited to 'news/leafnode/DEINSTALL')
-rw-r--r--news/leafnode/DEINSTALL22
1 files changed, 14 insertions, 8 deletions
diff --git a/news/leafnode/DEINSTALL b/news/leafnode/DEINSTALL
index a8659d524b0..d2ab0860285 100644
--- a/news/leafnode/DEINSTALL
+++ b/news/leafnode/DEINSTALL
@@ -1,14 +1,22 @@
-#!/bin/sh
-#
-# $NetBSD: DEINSTALL,v 1.2 2003/05/06 17:42:21 jmmv Exp $
+# $NetBSD: DEINSTALL,v 1.3 2004/01/11 16:45:51 cjep Exp $
-case "$2" in
- DEINSTALL) cat <<EOF
+LEAFNODE_CONFDIR=@LEAFNODE_CONFDIR@
+LEAFNODE_SPOOL=@LEAFNODE_SPOOL@
+LEAFNODE_LOCKDIR=@LEAFNODE_LOCKDIR@
+LEAFNODE_HOME=@LEAFNODE_HOME@
+
+case "${STAGE}" in
+ POST-DEINSTALL) cat <<EOF
==========================================================================
Note that the leafnode spool, lock and configuration directories
-(@@LEAFNODE_SPOOL@@, @@LEAFNODE_LOCKDIR@@ and @@LEAFNODE_CONFDIR@@)
+
+ ${LEAFNODE_SPOOL}
+ ${LEAFNODE_LOCKDIR}
+ ${LEAFNODE_HOME}
+ 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.
@@ -18,5 +26,3 @@ Also, don't forgot to remove any cron jobs associated with leafnode.
EOF
;;
esac
-
-exit 0