2001-02-11 06:24:29 +01:00
|
|
|
#! /bin/sh
|
|
|
|
#
|
2001-10-31 23:52:58 +01:00
|
|
|
# $NetBSD: DEINSTALL,v 1.1 2001/10/31 22:54:38 zuntum Exp $
|
2001-02-11 06:24:29 +01:00
|
|
|
#
|
|
|
|
|
|
|
|
case "$2" in
|
|
|
|
DEINSTALL)
|
2001-03-01 20:07:51 +01:00
|
|
|
if [ -f ${PKG_PREFIX}/etc/6to4.conf ]; then
|
2001-02-11 06:24:29 +01:00
|
|
|
cat <<EOF
|
|
|
|
|
|
|
|
=============================================================
|
2001-03-01 20:07:51 +01:00
|
|
|
Note that the 6to4 configuration file (${PKG_PREFIX}/etc/6to4.conf)
|
2001-02-11 06:24:29 +01:00
|
|
|
was not removed in the deinstallation process. You should
|
|
|
|
remove it by hand, if you no longer need it.
|
|
|
|
=============================================================
|
|
|
|
|
|
|
|
EOF
|
|
|
|
fi
|
|
|
|
;;
|
|
|
|
esac
|