From: Alan T. DeKok Date: Tue, 15 Nov 2022 11:24:35 +0000 (-0500) Subject: reorganization X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=074fc4815f231d7a31c495fc25f9192939d9e4ad;p=thirdparty%2Ffreeradius-server.git reorganization --- diff --git a/doc/antora/modules/reference/pages/unlang/keywords.adoc b/doc/antora/modules/reference/pages/unlang/keywords.adoc index 6796412b35b..910bc0d9cc6 100644 --- a/doc/antora/modules/reference/pages/unlang/keywords.adoc +++ b/doc/antora/modules/reference/pages/unlang/keywords.adoc @@ -19,8 +19,6 @@ looping, etc. | xref:unlang/elsif.adoc[elsif] | Check for condition when a previous `if` does not match. | xref:unlang/foreach.adoc[foreach] | Loop over a list of attributes. | xref:unlang/if.adoc[if] | Check for a condition, and execute a sub-policy if it matches. -| xref:unlang/limit.adoc[limit] | Limit the number of requests in a section -| xref:unlang/timeout.adoc[timeout] | Enforce a timeout for processing a section | xref:unlang/return.adoc[return] | Immediately stop processing a section. | xref:unlang/switch.adoc[switch] | Check for multiple values. |===== @@ -43,17 +41,19 @@ modify attributes in any list or packet. == Grouping Keywords The _grouping_ keywords allow policies to be organized into groups, -including load-balancing. +including fail-over, load-balancing, limits, etc. -.Grouping +.Grouping and Limits [options="header"] [cols="30%,70%"] |===== | Keyword | Description | xref:unlang/group.adoc[group] | Group a series of statements. | xref:unlang/load-balance.adoc[load-balance] | Define a load balancing group without fail-over. +| xref:unlang/limit.adoc[limit] | Limit the number of requests in a section | xref:unlang/redundant.adoc[redundant] | Define a redundant group with fail-over. | xref:unlang/redundant-load-balance.adoc[redundant-load-balance] | Define a redundant group with fail-over and load balancing. +| xref:unlang/timeout.adoc[timeout] | Enforce a timeout for processing a section |===== == Parent-Child Keywords