guides:reference:templates:conditionals
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revision | |||
guides:reference:templates:conditionals [2019/12/23 09:43] – ↷ Page moved from menu:build:templates:conditionals to guides:reference:templates:conditionals yspeerte | guides:reference:templates:conditionals [2024/07/03 12:31] (current) – external edit 127.0.0.1 | ||
---|---|---|---|
Line 1: | Line 1: | ||
+ | {{indexmenu_n> | ||
+ | |||
+ | ====== Conditionals ====== | ||
+ | |||
+ | Frequently parameter substitution in the templates require the conditional inclusion of the command line. Various forms of conditionals are supported by the YCE syntax. In its basic form the condition is stated between two vertical bars '' | ||
+ | |||
+ | Please note that in case of setting a login banner containing the vertical bar using a template, the following will be parsed as a condition and therefore not result in the envisioned banner. | ||
+ | |||
+ | This template line | ||
+ | |||
+ | < | ||
+ | banner motd d |------- Warning: THIS IS A PRIVATE COMPUTER SYSTEM -------| d | ||
+ | </ | ||
+ | |||
+ | Will result into this | ||
+ | |||
+ | < | ||
+ | banner motd d d | ||
+ | </ | ||
+ | |||
+ | However, by protecting the bars with a backslash will result in the desired command: | ||
+ | |||
+ | < | ||
+ | banner motd d \|------- Warning: THIS IS A PRIVATE COMPUTER SYSTEM -------\| d | ||
+ | </ | ||
+ | |||
+ | ===== Substitution condition ===== | ||
+ | |||
+ | < | ||
+ | |< | ||
+ | |’value’| template line | ||
+ | |’’| template line | ||
+ | |[Function()]| template line | ||
+ | </ | ||
+ | |||
+ | This tests the for a value of ''< | ||
+ | < | ||
+ | |!< | ||
+ | |!’value’| template line | ||
+ | </ | ||
+ | |||
+ | This form reverses the behavior: if the parameter is empty, the line is included. When it turns out it doesn’t exist, an error message will appear. | ||
+ | |||
+ | In all cases the '' | ||
+ | < | ||
+ | |< | ||
+ | </ | ||
+ | |||
+ | ===== Compare condition ===== | ||
+ | |||
+ | < | ||
+ | |< | ||
+ | |< | ||
+ | |< | ||
+ | |[Function()] = ...| template line | ||
+ | </ | ||
+ | |||
+ | These compare the value of ''< | ||
+ | |||
+ | Also here it is possible to have ‘not equal to’. The negation '' | ||
+ | < | ||
+ | |< | ||
+ | | ! < | ||
+ | </ | ||
+ | |||
+ | Quotes are optional for fixed values, but is recommended to use them. Actually the ''<'' | ||
+ | < | ||
+ | |< | ||
+ | |' | ||
+ | |< | ||
+ | |< | ||
+ | |< | ||
+ | </ | ||
+ | |||
+ | < | ||
+ | |< | ||
+ | |< | ||
+ | |hvs-rn06001 = hostname| no results, actually not correct | ||
+ | |hvs-rn06001 = < | ||
+ | |' | ||
+ | </ | ||
+ | |||
+ | ===== Multiple comparison ===== | ||
+ | |||
+ | < | ||
+ | |< | ||
+ | |< | ||
+ | </ | ||
+ | |||
+ | To prevent the same conditional template line to be used for a multiple number of values of a parameter, the values can be specified as a list. The brackets are optional. Also negations ('' | ||
+ | |||
+ | ===== Evaluation ===== | ||
+ | |||
+ | The all round '' | ||
+ | |||
+ | ===== Multiple comparison with context ===== | ||
+ | |||
+ | < | ||
+ | |< | ||
+ | |< | ||
+ | |< | ||
+ | </ | ||
+ | |||
+ | This generates a conditional line for all values of the context. This is mainly useful in the '' | ||
+ | < | ||
+ | |< | ||
+ | |< | ||
+ | </ | ||
+ | |||
+ | This equation has on both sides of the '' | ||
+ | < | ||
+ | |< | ||
+ | </ | ||
+ | |||
+ | ===== AND conditionals ===== | ||
+ | |||
+ | It is possible to create an '' | ||
+ | |||
+ | By using: | ||
+ | |||
+ | < | ||
+ | |< | ||
+ | </ | ||
+ | |||
+ | The cli command will only be executed when // | ||
+ | Likewise: | ||
+ | |||
+ | < | ||
+ | |< | ||
+ | </ | ||
+ | |||
+ | will only result in any output when both conditionals are true. When one of the conditionals fails, none of commands will be executed. | ||
+ | |||
+ | ===== Repeat and Else condition ===== | ||
+ | |||
+ | The result of the last conditional can be reused by testing on an empty condition ('' | ||
+ | < | ||
+ | |< | ||
+ | |||
+ | add some generic config lines | ||
+ | |||
+ | |!| {non_retail_stuff} | ||
+ | </ | ||
+ | |||
+ | Be aware that the conditionals are evaluated at run-time. The LAST conditional result is really the last one executed and is not aware of its context. If, like in the example above, a sub-template is included that itself uses conditionals, | ||
+ | |||
+ | The " | ||
+ | |||
+ | The repeat conditional is therefore best used for simple in-line commands or blocks. | ||
+ | |||
+ | < | ||
+ | # UNSAFE: | ||
+ | # if {retail_stuff} uses conditionals | ||
+ | |< | ||
+ | |||
+ | # because || now represents the result of the last conditional in {retail_stuff} | ||
+ | || {more_retail_stuff} | ||
+ | |||
+ | # SAFE: | ||
+ | |< | ||
+ | retail command line two \ | ||
+ | |||
+ | do generic commands | ||
+ | |||
+ | # now reuse the last conditional safely: | ||
+ | || {more_retail_stuff} | ||
+ | |||
+ | # but at this position, the '' | ||
+ | </ | ||