diff options
Diffstat (limited to 'sysutils/amanda-common/DEINSTALL')
-rw-r--r-- | sysutils/amanda-common/DEINSTALL | 63 |
1 files changed, 63 insertions, 0 deletions
diff --git a/sysutils/amanda-common/DEINSTALL b/sysutils/amanda-common/DEINSTALL new file mode 100644 index 00000000000..aa5a1f648a9 --- /dev/null +++ b/sysutils/amanda-common/DEINSTALL @@ -0,0 +1,63 @@ +#!/bin/sh +# +# $NetBSD: DEINSTALL,v 1.1 2001/10/31 22:52:48 zuntum Exp $ +# + +PKGNAME=$1 +STAGE=$2 + +USER=@AMUSER@ +AMVAR=@AMVAR@ + +CAT="@CAT@" +RMDIR="@RMDIR@" +TRUE="@TRUE@" + +case ${STAGE} in +DEINSTALL) + ;; + +POST-DEINSTALL) + ${RMDIR} ${AMVAR}/gnutar-lists 2>/dev/null || ${TRUE} + ${RMDIR} ${AMVAR} 2>/dev/null || ${TRUE} + + existing_dirs='' + for dir in ${AMVAR}/gnutar-lists ${AMVAR} + do + if [ -d ${dir} ] + then + existing_dirs="${existing_dirs} ${dir}" + fi + done + + ${CAT} << EOF +=========================================================================== +If you won't be using ${PKGNAME} any longer, you may want to remove: + + * the \`${USER}' user +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 + ;; + +*) + echo "Unexpected argument: ${STAGE}" + exit 1 + ;; +esac +exit 0 |