22 lines
688 B
Text
22 lines
688 B
Text
#
|
|
# Make sure the PYTHONPATH environmental variable contains the
|
|
# directory(s) for the modules listed below.
|
|
#
|
|
# Uncomment any func_* which are included in your module. If
|
|
# rlm_python is called for a section which does not have
|
|
# a function defined, it will return NOOP.
|
|
#
|
|
python3 re2o {
|
|
module = auth
|
|
|
|
python_path = /etc/freeradius/3.0:/usr/lib/python3.7:/usr/lib/python3.7/dist-packages:/usr/local/lib/python3.7/site-packages:/usr/lib/python3.7/lib-dynload:/usr/local/lib/python3.7/dist-packages
|
|
|
|
mod_instantiate = ${.module}
|
|
func_instantiate = instantiate
|
|
|
|
mod_authorize = ${.module}
|
|
func_authorize = authorize
|
|
|
|
mod_post_auth = ${.module}
|
|
func_post_auth = post_auth
|
|
}
|