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