summaryrefslogtreecommitdiff
path: root/net/coda5_server/pkg/DEINSTALL
diff options
context:
space:
mode:
Diffstat (limited to 'net/coda5_server/pkg/DEINSTALL')
-rw-r--r--net/coda5_server/pkg/DEINSTALL72
1 files changed, 72 insertions, 0 deletions
diff --git a/net/coda5_server/pkg/DEINSTALL b/net/coda5_server/pkg/DEINSTALL
new file mode 100644
index 00000000000..2dbf8658829
--- /dev/null
+++ b/net/coda5_server/pkg/DEINSTALL
@@ -0,0 +1,72 @@
+#! /bin/sh
+#
+# $NetBSD: DEINSTALL,v 1.1 2001/05/31 22:58:08 jlam Exp $
+
+PKGNAME=$1
+STAGE=$2
+
+CAT="@CAT@"
+LN="@LN@"
+RM="@RM@"
+RMDIR="@RMDIR@"
+TRUE="@TRUE@"
+
+CONFDIR=${PKG_PREFIX}/etc/coda
+
+case ${STAGE} in
+DEINSTALL)
+ ;;
+
+POST-DEINSTALL)
+ # If coda-server is installed, then point these links to the
+ # venus-* versions of these scripts.
+ #
+ for script in coda-setup-ports codaconfedit; do
+ ${RM} -f ${PKG_PREFIX}/sbin/${script}
+ if [ -f ${PKG_PREFIX}/sbin/venus-${script} ]
+ then
+ ${LN} -sf venus-${script} ${PKG_PREFIX}/sbin/${script}
+ fi
+ done
+
+ ${RMDIR} ${CONFDIR} 2>/dev/null || ${TRUE}
+
+ existing_dirs=''
+ for dir in ${CONFDIR}
+ do
+ if [ -d ${dir} ]
+ then
+ existing_dirs="${existing_dirs} ${dir}"
+ fi
+ done
+
+ if [ -n "${existing_dirs}" ]
+ then
+ ${CAT} << EOF
+===========================================================================
+If you won't be using ${PKGNAME} any longer, you may want to remove:
+EOF
+ if [ -n "${existing_dirs}" ]
+ then
+ ${CAT} << EOF
+
+ * the following directories:
+
+EOF
+ for dir in ${existing_dirs}
+ do
+ echo " ${dir}"
+ done
+ fi
+ ${CAT} << EOF
+===========================================================================
+EOF
+ fi
+ ;;
+
+*)
+ echo "Unexpected argument: ${STAGE}"
+ exit 1
+ ;;
+esac
+exit 0