remove group constrainte, it's now a normal group
This commit is contained in:
17
tests/dictionaries_old/70services_ip_twice/00-base.xml
Normal file
17
tests/dictionaries_old/70services_ip_twice/00-base.xml
Normal file
@ -0,0 +1,17 @@
|
||||
<?xml version='1.0' encoding='UTF-8'?>
|
||||
<rougail version="0.9">
|
||||
<services>
|
||||
<service name="nut">
|
||||
<ip>nut_monitor_host</ip>
|
||||
<ip>nut_monitor_host2</ip>
|
||||
</service>
|
||||
</services>
|
||||
<variables>
|
||||
<variable name="nut_monitor_host" type="ip" mandatory="True">
|
||||
<value>192.168.0.1</value>
|
||||
</variable>
|
||||
<variable name="nut_monitor_host2" type="ip" mandatory="True">
|
||||
<value>192.168.0.2</value>
|
||||
</variable>
|
||||
</variables>
|
||||
</rougail>
|
@ -0,0 +1,34 @@
|
||||
{
|
||||
"rougail.nut_monitor_host": {
|
||||
"owner": "default",
|
||||
"value": "192.168.0.1"
|
||||
},
|
||||
"rougail.nut_monitor_host2": {
|
||||
"owner": "default",
|
||||
"value": "192.168.0.2"
|
||||
},
|
||||
"services.nut.ip.nut_monitor_host.name": {
|
||||
"owner": "default",
|
||||
"value": "192.168.0.1"
|
||||
},
|
||||
"services.nut.ip.nut_monitor_host.activate": {
|
||||
"owner": "default",
|
||||
"value": true
|
||||
},
|
||||
"services.nut.ip.nut_monitor_host2.name": {
|
||||
"owner": "default",
|
||||
"value": "192.168.0.2"
|
||||
},
|
||||
"services.nut.ip.nut_monitor_host2.activate": {
|
||||
"owner": "default",
|
||||
"value": true
|
||||
},
|
||||
"services.nut.activate": {
|
||||
"owner": "default",
|
||||
"value": true
|
||||
},
|
||||
"services.nut.manage": {
|
||||
"owner": "default",
|
||||
"value": true
|
||||
}
|
||||
}
|
@ -0,0 +1,10 @@
|
||||
{
|
||||
"rougail.nut_monitor_host": "192.168.0.1",
|
||||
"rougail.nut_monitor_host2": "192.168.0.2",
|
||||
"services.nut.ip.nut_monitor_host.name": "192.168.0.1",
|
||||
"services.nut.ip.nut_monitor_host.activate": true,
|
||||
"services.nut.ip.nut_monitor_host2.name": "192.168.0.2",
|
||||
"services.nut.ip.nut_monitor_host2.activate": true,
|
||||
"services.nut.activate": true,
|
||||
"services.nut.manage": true
|
||||
}
|
@ -0,0 +1,34 @@
|
||||
{
|
||||
"rougail.nut_monitor_host": {
|
||||
"owner": "default",
|
||||
"value": "192.168.0.1"
|
||||
},
|
||||
"rougail.nut_monitor_host2": {
|
||||
"owner": "default",
|
||||
"value": "192.168.0.2"
|
||||
},
|
||||
"services.nut.ip.nut_monitor_host.name": {
|
||||
"owner": "default",
|
||||
"value": "192.168.0.1"
|
||||
},
|
||||
"services.nut.ip.nut_monitor_host.activate": {
|
||||
"owner": "default",
|
||||
"value": true
|
||||
},
|
||||
"services.nut.ip.nut_monitor_host2.name": {
|
||||
"owner": "default",
|
||||
"value": "192.168.0.2"
|
||||
},
|
||||
"services.nut.ip.nut_monitor_host2.activate": {
|
||||
"owner": "default",
|
||||
"value": true
|
||||
},
|
||||
"services.nut.activate": {
|
||||
"owner": "default",
|
||||
"value": true
|
||||
},
|
||||
"services.nut.manage": {
|
||||
"owner": "default",
|
||||
"value": true
|
||||
}
|
||||
}
|
@ -0,0 +1,4 @@
|
||||
[Service]
|
||||
IPAddressAllow=192.168.0.1
|
||||
IPAddressAllow=192.168.0.2
|
||||
IPAddressDeny=any
|
28
tests/dictionaries_old/70services_ip_twice/tiramisu/base.py
Normal file
28
tests/dictionaries_old/70services_ip_twice/tiramisu/base.py
Normal file
@ -0,0 +1,28 @@
|
||||
from importlib.machinery import SourceFileLoader
|
||||
from importlib.util import spec_from_loader, module_from_spec
|
||||
loader = SourceFileLoader('func', 'tests/dictionaries/../eosfunc/test.py')
|
||||
spec = spec_from_loader(loader.name, loader)
|
||||
func = module_from_spec(spec)
|
||||
loader.exec_module(func)
|
||||
for key, value in dict(locals()).items():
|
||||
if key != ['SourceFileLoader', 'func']:
|
||||
setattr(func, key, value)
|
||||
try:
|
||||
from tiramisu3 import *
|
||||
except:
|
||||
from tiramisu import *
|
||||
option_2 = IPOption(name="nut_monitor_host", doc="nut_monitor_host", default="192.168.0.1", allow_reserved=True, properties=frozenset({"mandatory", "normal"}))
|
||||
option_3 = IPOption(name="nut_monitor_host2", doc="nut_monitor_host2", default="192.168.0.2", allow_reserved=True, properties=frozenset({"mandatory", "normal"}))
|
||||
option_1 = OptionDescription(name="rougail", doc="rougail", children=[option_2, option_3])
|
||||
option_8 = SymLinkOption(name="name", opt=option_2)
|
||||
option_9 = BoolOption(name="activate", doc="activate", default=True)
|
||||
option_7 = OptionDescription(name="nut_monitor_host", doc="nut_monitor_host", children=[option_8, option_9])
|
||||
option_11 = SymLinkOption(name="name", opt=option_3)
|
||||
option_12 = BoolOption(name="activate", doc="activate", default=True)
|
||||
option_10 = OptionDescription(name="nut_monitor_host2", doc="nut_monitor_host2", children=[option_11, option_12])
|
||||
option_6 = OptionDescription(name="ip", doc="ip", children=[option_7, option_10])
|
||||
option_13 = BoolOption(name="activate", doc="activate", default=True)
|
||||
option_14 = BoolOption(name="manage", doc="manage", default=True)
|
||||
option_5 = OptionDescription(name="nut", doc="nut", children=[option_6, option_13, option_14])
|
||||
option_4 = OptionDescription(name="services", doc="services", children=[option_5], properties=frozenset({"hidden"}))
|
||||
option_0 = OptionDescription(name="baseoption", doc="baseoption", children=[option_1, option_4])
|
Reference in New Issue
Block a user