c1fb484820
Jesred is a redirector for the Squid proxy. It was derived from Squirm 1.0 betaB and some parts of squid. Author claims that it's about two or three times faster than original Squirm, and has some added features. MAINTAINER= Couderc Damien <couderc.damien@wanadoo.fr>
52 lines
988 B
Bash
52 lines
988 B
Bash
#!/bin/sh
|
|
#
|
|
# De-installation setup of jesred
|
|
|
|
# exit on errors, use a sane path and install prefix
|
|
#
|
|
set -e
|
|
PATH=/bin:/usr/bin:/sbin:/usr/sbin
|
|
PREFIX=${PKG_PREFIX:-/usr/local}
|
|
|
|
CONFIG_DIR=${SYSCONFDIR}/jesred
|
|
|
|
|
|
# Function: tell the user what they need to do to delete the port completely
|
|
#
|
|
do_notice()
|
|
{
|
|
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 "|"
|
|
echo "| Do not do this if you plan on re-installing $1"
|
|
echo "| at some future time."
|
|
echo "+---------------"
|
|
echo
|
|
}
|
|
|
|
|
|
# verify proper execution
|
|
#
|
|
if [ $# -ne 2 ]; then
|
|
echo "usage: $0 distname DEINSTALL" >&2
|
|
exit 1
|
|
fi
|
|
|
|
# Verify/process the command
|
|
#
|
|
case $2 in
|
|
DEINSTALL)
|
|
if [ -e ${CONFIG_DIR} ]; then
|
|
do_notice "$1"
|
|
fi
|
|
;;
|
|
*)
|
|
echo "usage: $0 distname DEINSTALL" >&2
|
|
exit 1
|
|
;;
|
|
esac
|