remove group constrainte, it's now a normal group
This commit is contained in:
13
tests/dictionaries_old/70services_ip/00-base.xml
Normal file
13
tests/dictionaries_old/70services_ip/00-base.xml
Normal file
@ -0,0 +1,13 @@
|
||||
<?xml version='1.0' encoding='UTF-8'?>
|
||||
<rougail version="0.9">
|
||||
<services>
|
||||
<service name="nut">
|
||||
<ip>nut_monitor_host</ip>
|
||||
</service>
|
||||
</services>
|
||||
<variables>
|
||||
<variable name="nut_monitor_host" type="ip" mandatory="True">
|
||||
<value>192.168.0.1</value>
|
||||
</variable>
|
||||
</variables>
|
||||
</rougail>
|
0
tests/dictionaries_old/70services_ip/__init__.py
Normal file
0
tests/dictionaries_old/70services_ip/__init__.py
Normal file
22
tests/dictionaries_old/70services_ip/makedict/after.json
Normal file
22
tests/dictionaries_old/70services_ip/makedict/after.json
Normal file
@ -0,0 +1,22 @@
|
||||
{
|
||||
"rougail.nut_monitor_host": {
|
||||
"owner": "default",
|
||||
"value": "192.168.0.1"
|
||||
},
|
||||
"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.activate": {
|
||||
"owner": "default",
|
||||
"value": true
|
||||
},
|
||||
"services.nut.manage": {
|
||||
"owner": "default",
|
||||
"value": true
|
||||
}
|
||||
}
|
7
tests/dictionaries_old/70services_ip/makedict/base.json
Normal file
7
tests/dictionaries_old/70services_ip/makedict/base.json
Normal file
@ -0,0 +1,7 @@
|
||||
{
|
||||
"rougail.nut_monitor_host": "192.168.0.1",
|
||||
"services.nut.ip.nut_monitor_host.name": "192.168.0.1",
|
||||
"services.nut.ip.nut_monitor_host.activate": true,
|
||||
"services.nut.activate": true,
|
||||
"services.nut.manage": true
|
||||
}
|
22
tests/dictionaries_old/70services_ip/makedict/before.json
Normal file
22
tests/dictionaries_old/70services_ip/makedict/before.json
Normal file
@ -0,0 +1,22 @@
|
||||
{
|
||||
"rougail.nut_monitor_host": {
|
||||
"owner": "default",
|
||||
"value": "192.168.0.1"
|
||||
},
|
||||
"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.activate": {
|
||||
"owner": "default",
|
||||
"value": true
|
||||
},
|
||||
"services.nut.manage": {
|
||||
"owner": "default",
|
||||
"value": true
|
||||
}
|
||||
}
|
@ -0,0 +1,3 @@
|
||||
[Service]
|
||||
IPAddressAllow=192.168.0.1
|
||||
IPAddressDeny=any
|
24
tests/dictionaries_old/70services_ip/tiramisu/base.py
Normal file
24
tests/dictionaries_old/70services_ip/tiramisu/base.py
Normal file
@ -0,0 +1,24 @@
|
||||
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_1 = OptionDescription(name="rougail", doc="rougail", children=[option_2])
|
||||
option_7 = SymLinkOption(name="name", opt=option_2)
|
||||
option_8 = BoolOption(name="activate", doc="activate", default=True)
|
||||
option_6 = OptionDescription(name="nut_monitor_host", doc="nut_monitor_host", children=[option_7, option_8])
|
||||
option_5 = OptionDescription(name="ip", doc="ip", children=[option_6])
|
||||
option_9 = BoolOption(name="activate", doc="activate", default=True)
|
||||
option_10 = BoolOption(name="manage", doc="manage", default=True)
|
||||
option_4 = OptionDescription(name="nut", doc="nut", children=[option_5, option_9, option_10])
|
||||
option_3 = OptionDescription(name="services", doc="services", children=[option_4], properties=frozenset({"hidden"}))
|
||||
option_0 = OptionDescription(name="baseoption", doc="baseoption", children=[option_1, option_3])
|
Reference in New Issue
Block a user