45 lines
745 B
Bash
45 lines
745 B
Bash
#!/bin/sh
|
|
#
|
|
# $NetBSD: DEINSTALL,v 1.1 2001/10/31 20:06:31 zuntum Exp $
|
|
#
|
|
|
|
PKGNAME=$1
|
|
STAGE=$2
|
|
|
|
USER=@USER@
|
|
GROUP=@GROUP@
|
|
DPATH=@DPATH@
|
|
LPATH=@LPATH@
|
|
USERLOG=@USERLOG@
|
|
OPERLOG=@OPERLOG@
|
|
|
|
CAT="@CAT@"
|
|
|
|
case ${STAGE} in
|
|
DEINSTALL)
|
|
:;;
|
|
|
|
POST-DEINSTALL)
|
|
|
|
${CAT} << EOF
|
|
===========================================================================
|
|
If you won't be using ${PKGNAME} any longer, you may want to remove:
|
|
|
|
* the \`${USER}' user
|
|
* the \`${GROUP}' group
|
|
* the \`${DPATH}' directory and its content
|
|
* various logfiles if they exist:
|
|
\`${LPATH}
|
|
\`${USERLOG}'
|
|
\`${OPERLOG}
|
|
|
|
===========================================================================
|
|
EOF
|
|
;;
|
|
|
|
*)
|
|
echo "Unexpected argument: ${STAGE}"
|
|
exit 1
|
|
;;
|
|
esac
|
|
exit 0
|