openbsd-ports/sysutils/nut/pkg/DEINSTALL
marcm dd73fa6eb5 * Update to 1.0.0
* CGIs are now a SUBPACKAGE and work with chrooted Apache

* Make myself MAINTAINER

* Mark conflict with upad-2.0

ok naddy@ and nate@
2002-10-14 16:14:33 +00:00

38 lines
760 B
Bash

#!/bin/sh
#
# $OpenBSD: DEINSTALL,v 1.2 2002/10/14 16:14:33 marcm Exp $
#
set -e
PATH=/bin:/usr/bin:/sbin:/usr/sbin
FILES='
hosts.conf
multimon.conf
ups.conf
upssched.conf
upsset.conf
upsmon.conf
upsd.conf
upsd.users
'
echo
echo "+--------------- $1"
echo "| To fully remove $1 from your system you should also"
echo "| remove the configuration files from the ${SYSCONFDIR} directory."
echo "| Remove the directories in which the files reside as well if empty."
echo "|"
echo "| If you are planning on installing $1 again in the future"
echo "| you can leave it as it is."
echo "|"
echo "| FYI, the following configuration files belong to this package:"
echo "|"
for f in ${FILES}; do
echo "| ${SYSCONFDIR}/$f"
done
echo "+--------------- $1"
echo
exit 0