Radiator Server Documentation — v10.33.2
any
Any statement for returning on first accept
Table of Contents
any
NOTE: The until action should be used instead of pipeline directives. The until action provides a readable and flexible way to control pipeline execution.
Standalone action for the any pipeline directive.
Example
# Try to find a user from different backends
any {
backend "LDAP1";
backend "LDAP2";
}
Migration to until
Use until accept {}
until accept {
backend "LDAP1";
backend "LDAP2";
}
Table of Contents