20 lines
476 B
Bash
20 lines
476 B
Bash
#! /bin/sh
|
|
#
|
|
# $NetBSD: DEINSTALL,v 1.1 2001/10/31 22:54:38 zuntum Exp $
|
|
#
|
|
|
|
case "$2" in
|
|
DEINSTALL)
|
|
if [ -f ${PKG_PREFIX}/etc/6to4.conf ]; then
|
|
cat <<EOF
|
|
|
|
=============================================================
|
|
Note that the 6to4 configuration file (${PKG_PREFIX}/etc/6to4.conf)
|
|
was not removed in the deinstallation process. You should
|
|
remove it by hand, if you no longer need it.
|
|
=============================================================
|
|
|
|
EOF
|
|
fi
|
|
;;
|
|
esac
|