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