openbsd-ports/www/mod_auth_radius/pkg/DEINSTALL
jcs f5740687b8 Import of mod_auth_radius-1.5.2.
This is the Apache RADIUS authentication module. It allows
any Apache web-server to become a RADIUS client for
authentication and accounting requests.
2001-09-01 15:26:13 +00:00

29 lines
658 B
Bash

#!/bin/sh
#
# $OpenBSD: DEINSTALL,v 1.1.1.1 2001/09/01 15:26:13 jcs Exp $
#
# mod_auth_radius de-installation
set -e
PATH=/bin:/usr/bin:/sbin:/usr/sbin
PREFIX=${PKG_PREFIX:-/usr/local}
CONF=`apxs -q SYSCONFDIR`/httpd.conf
MODULE=/usr/lib/apache/modules/mod_auth_radius.so
rm -f ${MODULE}
echo
echo "+---------------"
echo "| To completely deinstall the $1 package you"
echo "| need to perform these steps as root:"
echo "|"
echo "| edit ${CONF}"
echo "| remove the line LoadModule auth_radius_module"
echo "|"
echo "| Do not do this if you plan on re-installing $1"
echo "| package at some future time."
echo "+---------------"
echo
exit 0