2023-10-12 08:17:30 +02:00
from tiramisu import *
from tiramisu . setting import ALLOWED_LEADER_PROPERTIES
2024-06-19 17:36:18 +02:00
from rougail . tiramisu import func , dict_env , load_functions , ConvertDynOptionDescription
load_functions ( ' tests/dictionaries/../eosfunc/test.py ' )
2023-10-12 08:17:30 +02:00
ALLOWED_LEADER_PROPERTIES . add ( " basic " )
ALLOWED_LEADER_PROPERTIES . add ( " standard " )
ALLOWED_LEADER_PROPERTIES . add ( " advanced " )
option_4 = StrOption ( name = " mode_conteneur_actif " , doc = " No change " , default = " oui " , properties = frozenset ( { " force_default_on_freeze " , " frozen " , " hidden " , " mandatory " , " standard " } ) )
option_6 = NetmaskOption ( name = " nut_monitor_netmask " , doc = " Masque de l ' IP du réseau de l ' esclave " , multi = True , properties = frozenset ( { " standard " } ) )
option_7 = NetworkOption ( name = " nut_monitor_host " , doc = " Adresse IP du réseau de l ' esclave " , multi = True , properties = frozenset ( { " basic " , " mandatory " } ) )
2024-06-19 17:36:18 +02:00
optiondescription_5 = Leadership ( name = " nut_monitor_netmask " , doc = " Masque de l ' IP du réseau de l ' esclave " , children = [ option_6 , option_7 ] , properties = frozenset ( { " basic " } ) )
optiondescription_3 = OptionDescription ( name = " general " , doc = " général " , children = [ option_4 , optiondescription_5 ] , properties = frozenset ( { " basic " } ) )
optiondescription_2 = OptionDescription ( name = " rougail " , doc = " rougail " , children = [ optiondescription_3 ] , properties = frozenset ( { " basic " } ) )
optiondescription_1 = OptionDescription ( name = " 1 " , doc = " 1 " , children = [ optiondescription_2 ] , properties = frozenset ( { " basic " } ) )
2023-10-12 08:17:30 +02:00
option_11 = StrOption ( name = " mode_conteneur_actif " , doc = " No change " , default = " oui " , properties = frozenset ( { " force_default_on_freeze " , " frozen " , " hidden " , " mandatory " , " standard " } ) )
option_13 = NetmaskOption ( name = " nut_monitor_netmask " , doc = " Masque de l ' IP du réseau de l ' esclave " , multi = True , properties = frozenset ( { " standard " } ) )
option_14 = NetworkOption ( name = " nut_monitor_host " , doc = " Adresse IP du réseau de l ' esclave " , multi = True , properties = frozenset ( { " basic " , " mandatory " } ) )
2024-06-19 17:36:18 +02:00
optiondescription_12 = Leadership ( name = " nut_monitor_netmask " , doc = " Masque de l ' IP du réseau de l ' esclave " , children = [ option_13 , option_14 ] , properties = frozenset ( { " basic " } ) )
optiondescription_10 = OptionDescription ( name = " general " , doc = " général " , children = [ option_11 , optiondescription_12 ] , properties = frozenset ( { " basic " } ) )
optiondescription_9 = OptionDescription ( name = " rougail " , doc = " rougail " , children = [ optiondescription_10 ] , properties = frozenset ( { " basic " } ) )
optiondescription_8 = OptionDescription ( name = " 2 " , doc = " 2 " , children = [ optiondescription_9 ] , properties = frozenset ( { " basic " } ) )
2023-10-12 08:17:30 +02:00
option_0 = OptionDescription ( name = " baseoption " , doc = " baseoption " , children = [ optiondescription_1 , optiondescription_8 ] )