Radiator Server Documentation — v10.34.0
none
None statement for returning reject on first accept
Table of Contents
none
Standalone action for the none pipeline directive.
Deprecated: Use
untilinstead. Result propagation makesnonedifficult to reason about, especially when actions preserve an inherited result.
Migration to until
The none directive returns accept when no action accepts. Reject and ignore results do not
match. Use when clauses to replicate this behavior:
until accept {
backend "EMPLOYEE_DB";
backend "CONTRACTOR_DB";
backend "VPN_USERS";
} when accept {
reject "User found in a known database";
} else {
# User not found in any database, allow guest access only
accept;
}
Table of Contents