Radiator Server Documentation — v10.33.3
any
Any statement for returning on first accept
Table of Contents
any
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