Radiator Server Documentation — v10.33.2
none
None statement for returning reject on first accept
Table of Contents
none
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 none pipeline directive.
Migration to until
The none directive inverts results: all actions must reject for it to return accept. Use when clauses to replicate this behavior:
until accept ignore {
backend "EMPLOYEE_DB";
backend "CONTRACTOR_DB";
backend "VPN_USERS";
} when reject {
# User not found in any database, allow guest access only
accept;
}
Table of Contents