diff options
Diffstat (limited to 'security/pks/DEINSTALL')
-rw-r--r-- | security/pks/DEINSTALL | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/security/pks/DEINSTALL b/security/pks/DEINSTALL new file mode 100644 index 00000000000..93bc3d0ac2c --- /dev/null +++ b/security/pks/DEINSTALL @@ -0,0 +1,27 @@ +#!/bin/sh +# +# $NetBSD: DEINSTALL,v 1.1 2001/11/01 01:17:32 zuntum Exp $ + +PKGNAME=$1 +STAGE=$2 + +case ${STAGE} in +DEINSTALL) + ;; +POST-DEINSTALL) + cat << EOF +=========================================================================== +If you won't be using ${PKGNAME} any longer, you may want to remove the +following directories and files: + + /etc/pksd.conf + /var/pks +=========================================================================== +EOF + ;; +*) + echo "Unexpected argument: ${STAGE}" + exit 1 + ;; +esac +exit 0 |