880a2f8a14
- using FAKE means you don't have to remove files/dirs durring install that you do not want in the package, just don't include them in the PLIST - unconditionally show DEINSTALL message, just because SYSCONFDIR has been removed doesn't mean that LOG_DIR has too - ${FOO} -> $FOO and add $SAMPLE_CONFIG_DIR to INSTALL script
26 lines
565 B
Bash
26 lines
565 B
Bash
#!/bin/sh
|
|
# $OpenBSD: DEINSTALL,v 1.2 2000/08/29 04:27:51 brad Exp $
|
|
#
|
|
# icecast de-installation
|
|
|
|
set -e
|
|
PATH=/bin:/usr/bin:/sbin:/usr/sbin
|
|
PREFIX=${PKG_PREFIX:-/usr/local}
|
|
CONFIG_DIR=${SYSCONFDIR}
|
|
LOG_DIR=/var/log/icecast
|
|
|
|
echo
|
|
echo "+---------------"
|
|
echo "| To completely deinstall the $1 package you need to perform"
|
|
echo "| these steps as root:"
|
|
echo "|"
|
|
echo "| rm -rf $CONFIG_DIR"
|
|
echo "| rm -rf $LOG_DIR"
|
|
echo "|"
|
|
echo "| Do not do this if you plan on re-installing $1"
|
|
echo "| at some future time."
|
|
echo "+---------------"
|
|
echo
|
|
|
|
exit 0
|