eadb38977c
ok jolan@
30 lines
706 B
Bash
30 lines
706 B
Bash
#!/bin/sh
|
|
#
|
|
# $OpenBSD: DEINSTALL-battstat,v 1.2 2003/06/12 20:12:55 marcm Exp $
|
|
#
|
|
|
|
set -e
|
|
PATH=/bin:/usr/bin:/sbin:/usr/sbin
|
|
|
|
FILES='
|
|
sound/events/battstat_applet.soundlist
|
|
'
|
|
|
|
echo
|
|
echo "+--------------- $1"
|
|
echo "| To really remove $1 from your system you should also"
|
|
echo "| remove the configuration files from the ${CONFDIR} directory."
|
|
echo "| Remove the directories in which the files reside as well if empty."
|
|
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 belongs to this package:"
|
|
echo "|"
|
|
for f in ${FILES}; do
|
|
echo "| ${SYSCONFDIR}/$f"
|
|
done
|
|
echo "+--------------- $1"
|
|
echo
|
|
|
|
exit 0
|