freebsd-ports/dns/totd/pkg-deinstall
Volker Stolz ecf9e6e7c4 - rcNGify
- Make pkg-deinstall PREFIX-aware while here

PR:		ports/67052
Submitted by:	ume
2004-05-24 11:46:59 +00:00

19 lines
448 B
Bash

#!/bin/sh
# $OpenBSD: DEINSTALL,v 1.1 2000/06/11 01:15:53 fgsch Exp $
#
# Post-deinstallation cleanup of totd
if [ x$2 = "xDEINSTALL" ]; then
echo ""
echo "** To completely deinstall the totd package you need to perform this"
echo "** as root:"
echo "**"
echo "** rm -f ${PKG_PREFIX}/etc/totd.conf"
echo "**"
echo "** Be absolutly sure you want to completely remove the package before"
echo "** issuing this command."
echo ""
fi
exit 0