- /etc -> SYSCONFDIR

- cleanup DESCR
This commit is contained in:
danh 2001-02-13 01:43:40 +00:00
parent c8be10d4e8
commit 957bcba6e5
2 changed files with 35 additions and 24 deletions

View File

@ -1,21 +1,25 @@
#!/bin/sh
# $OpenBSD: DEINSTALL,v 1.2 2000/08/29 16:44:30 danh Exp $
# $OpenBSD: DEINSTALL,v 1.3 2001/02/13 01:43:40 danh Exp $
do-deinstall ()
{
set -e
PATH="/bin:/usr/bin:/sbin:/usr/sbin"
PREFIX="${PKG_PREFIX:-/usr/local}"
CONFIG_DIR="${SYSCONFDIR}/raddb"
RADACCT_DIR="/var/log/radacct"
if [ -d ${CONFIG_DIR} -o -d ${RADACCT_DIR} ]; then
echo "+---------------"
echo "| If you do not plan on re-installing this package and have"
echo "| no more use for the previous configuration or data, then"
echo "| the following may safely be deleted:"
echo "|"
if [ -d /etc/raddb ]; then
echo "| /etc/raddb"
if [ -d ${CONFIG_DIR} ]; then
echo "| ${CONFIG_DIR}"
fi
if [ -d /var/log/radacct ]; then
echo "| /var/log/radacct"
if [ -d ${RADACCT_DIR} ]; then
echo "| ${RADACCT_DIR}"
fi
echo "+---------------"
}
fi
[ -d /etc/raddb -o -d /var/log/radacct ] && do-deinstall
exit 0

View File

@ -1,18 +1,25 @@
The server is mostly compatible with livingston radiusd-2.01
(no menus or s/key support though) but with more feautures, such as:
The server is mostly compatible with livingston radiusd-2.01
(no menus or s/key support though) but with more feautures,
such as:
o Can limit max. number of simultaneous logins on a per-user basis!
o Multiple DEFAULT entries, that can optionally fall-through.
o In fact, every entry can fall-through
o Deny/permit access based on huntgroup users dials into
o Set certain parameters (such as static IP address) based on huntgroup
o Extra "hints" file that can select SLIP/PPP/rlogin based on
username pattern (Puser or user.ppp is PPP, plain "user" is rlogin etc).
o Can execute an external program when user has authenticated (for example
to run a sendmail queue).
o Can use `$INCLUDE filename' in users and dictionary files
o Can act as a proxyerver, relaying requests to a remote server
o Supports Vendor-Specific attributes
o No good documentation at all, just like the original radiusd
o Can limit max. number of simultaneous logins on a per-
user basis!
o Multiple DEFAULT entries, that can optionally fall-
through.
o In fact, every entry can fall-through.
o Deny/permit access based on huntgroup users dials into.
o Set certain parameters (such as static IP address) based
on huntgroup.
o Extra "hints" file that can select SLIP/PPP/rlogin based
on username pattern (Puser or user.ppp is PPP, plain
"user" is rlogin etc).
o Can execute an external program when user has authenti-
cated (for example to run a sendmail queue).
o Can use `$INCLUDE filename' in users and dictionary files.
o Can act as a proxyerver, relaying requests to a remote
server.
o Supports Vendor-Specific attributes.
o No good documentation at all, just like the original
radiusd.
WWW: ${HOMEPAGE}