summaryrefslogtreecommitdiff
path: root/chat/ircd-hybrid/DEINSTALL
diff options
context:
space:
mode:
Diffstat (limited to 'chat/ircd-hybrid/DEINSTALL')
-rw-r--r--chat/ircd-hybrid/DEINSTALL45
1 files changed, 45 insertions, 0 deletions
diff --git a/chat/ircd-hybrid/DEINSTALL b/chat/ircd-hybrid/DEINSTALL
new file mode 100644
index 00000000000..ce56f5fbcc6
--- /dev/null
+++ b/chat/ircd-hybrid/DEINSTALL
@@ -0,0 +1,45 @@
+#!/bin/sh
+#
+# $NetBSD: DEINSTALL,v 1.1 2001/10/31 20:06:31 zuntum Exp $
+#
+
+PKGNAME=$1
+STAGE=$2
+
+USER=@USER@
+GROUP=@GROUP@
+DPATH=@DPATH@
+LPATH=@LPATH@
+USERLOG=@USERLOG@
+OPERLOG=@OPERLOG@
+
+CAT="@CAT@"
+
+case ${STAGE} in
+DEINSTALL)
+ :;;
+
+POST-DEINSTALL)
+
+ ${CAT} << EOF
+===========================================================================
+If you won't be using ${PKGNAME} any longer, you may want to remove:
+
+ * the \`${USER}' user
+ * the \`${GROUP}' group
+ * the \`${DPATH}' directory and its content
+ * various logfiles if they exist:
+ \`${LPATH}
+ \`${USERLOG}'
+ \`${OPERLOG}
+
+===========================================================================
+EOF
+ ;;
+
+*)
+ echo "Unexpected argument: ${STAGE}"
+ exit 1
+ ;;
+esac
+exit 0