summaryrefslogtreecommitdiff
path: root/misc/vfu/DEINSTALL
diff options
context:
space:
mode:
Diffstat (limited to 'misc/vfu/DEINSTALL')
-rw-r--r--misc/vfu/DEINSTALL66
1 files changed, 66 insertions, 0 deletions
diff --git a/misc/vfu/DEINSTALL b/misc/vfu/DEINSTALL
new file mode 100644
index 00000000000..b98573dd00e
--- /dev/null
+++ b/misc/vfu/DEINSTALL
@@ -0,0 +1,66 @@
+#!/bin/sh
+#
+# $NetBSD: DEINSTALL,v 1.1 2001/11/01 01:29:50 zuntum Exp $
+
+PKGNAME=$1
+STAGE=$2
+
+CAT="@CAT@"
+CMP="@CMP@"
+RM="@RM@"
+
+SAMPLECONFDIR=${PKG_PREFIX}/share/examples/vfu
+CONFDIR=${PKG_PREFIX}/etc
+CONFFILES="vfurc"
+
+case ${STAGE} in
+DEINSTALL)
+ # Remove configuration files if they don't differ from the default
+ # config file.
+ #
+ for file in ${CONFFILES}
+ do
+ FILE=${CONFDIR}/${file}
+ SAMPLEFILE=${SAMPLECONFDIR}/${file}
+ if ${CMP} -s ${FILE} ${SAMPLEFILE}
+ then
+ ${RM} -f ${FILE}
+ fi
+ done
+ ;;
+
+POST-DEINSTALL)
+ modified_files=''
+ for file in ${CONFFILES}
+ do
+ FILE=${CONFDIR}/${file}
+ if [ -f ${FILE} ]
+ then
+ modified_files="${modified_files} ${FILE}"
+ fi
+ done
+
+ if [ -n "${modified_files}" ]
+ then
+ ${CAT} << EOF
+===========================================================================
+If you won't be using ${PKGNAME} any longer, you may want to remove the
+following files:
+
+EOF
+ for file in ${modified_files}
+ do
+ echo " ${file}"
+ done
+ ${CAT} << EOF
+===========================================================================
+EOF
+ fi
+ ;;
+
+*)
+ echo "Unexpected argument: ${STAGE}"
+ exit 1
+ ;;
+esac
+exit 0