aboutsummaryrefslogtreecommitdiff
path: root/www/interchange/pkg-deinstall
diff options
context:
space:
mode:
Diffstat (limited to 'www/interchange/pkg-deinstall')
-rw-r--r--www/interchange/pkg-deinstall22
1 files changed, 0 insertions, 22 deletions
diff --git a/www/interchange/pkg-deinstall b/www/interchange/pkg-deinstall
deleted file mode 100644
index 7dfcf9b6382f..000000000000
--- a/www/interchange/pkg-deinstall
+++ /dev/null
@@ -1,22 +0,0 @@
-#!/bin/sh
-#
-# $FreeBSD$
-#
-
-if [ "$2" != "POST-DEINSTALL" ]; then
- exit 0
-fi
-
-USER=interch
-
-# Don't delete it, there may be ${USER} owned files around.
-pw usershow "${USER}" >/dev/null 2>&1 \
- && echo -e "\n\
-* To clean up the Interchange from your filesystem,
-* run 'rm -fr ${PKG_PREFIX}/interchange'
-* and 'rm -fr /var/run/interchange'
-*
-* To delete the user '${USER}' permanently,
-* use 'pw userdel ${USER}'.\n"
-
-exit 0