rougail-output-doc/tests/docs/no_namespace/04_5validators_ipnetmask.adoc

51 lines
1.8 KiB
Text
Raw Permalink Normal View History

2024-07-10 21:27:48 +02:00
== dictionaries/rougail/00-base.yml
[,yaml]
----
version: '1.1'
network_address_eth0:
description: Network address
type: network
netmask_address_eth0:
description: Netmask address
type: netmask
validators:
- type: jinja
jinja: |
{% if not _.netmask_address_eth0 | valid_in_network(_.network_address_eth0) %}
{{ _.netmask_address_eth0 }} is not a netmask for network {{ _.network_address_eth0 }}
{% endif %}
description: this mask is possible for the network
----
== Variables
[cols="106a,106a",options="header"]
|====
| Variable | Description
|
**network_address_eth0** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[network]` `basic` `mandatory` |
Network address.
|
**netmask_address_eth0** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[netmask]` `basic` `mandatory` |
Netmask address. +
**Validator**: this mask is possible for the network.
|====
== Example with mandatory variables not filled in
[,yaml]
----
network_address_eth0: 1.1.1.0
netmask_address_eth0: 255.255.255.0
----
== Example with all variables modifiable
[,yaml]
----
network_address_eth0: 1.1.1.0
netmask_address_eth0: 255.255.255.0
----