summaryrefslogtreecommitdiff
path: root/chat/gale/DEINSTALL
diff options
context:
space:
mode:
Diffstat (limited to 'chat/gale/DEINSTALL')
-rw-r--r--chat/gale/DEINSTALL19
1 files changed, 19 insertions, 0 deletions
diff --git a/chat/gale/DEINSTALL b/chat/gale/DEINSTALL
new file mode 100644
index 00000000000..d1f897f5e25
--- /dev/null
+++ b/chat/gale/DEINSTALL
@@ -0,0 +1,19 @@
+#!/bin/sh
+#
+# $NetBSD: DEINSTALL,v 1.1 2001/10/31 20:06:24 zuntum Exp $
+#
+
+USER="@GALE_USER@"
+GROUP="@GALE_GROUP@"
+USERDEL="@USERDEL@"
+GROUPDEL="@GROUPDEL@"
+
+case "$2" in
+ DEINSTALL)
+ echo "Removing user ${USER}"
+ ${USERDEL} -r ${USER}
+ echo "Removing group ${GROUP}"
+ ${GROUPDEL} ${GROUP}
+ ;;
+esac
+exit 0