add systemd timer + a service and a timer can have same name
This commit is contained in:
@ -7,23 +7,23 @@
|
||||
"owner": "default",
|
||||
"value": "192.168.0.0"
|
||||
},
|
||||
"services.nut.ip.nut_monitor_host.name": {
|
||||
"services.nut_service.ip.nut_monitor_host.name": {
|
||||
"owner": "default",
|
||||
"value": "192.168.0.0"
|
||||
},
|
||||
"services.nut.ip.nut_monitor_host.netmask": {
|
||||
"services.nut_service.ip.nut_monitor_host.netmask": {
|
||||
"owner": "default",
|
||||
"value": "255.255.255.0"
|
||||
},
|
||||
"services.nut.ip.nut_monitor_host.activate": {
|
||||
"services.nut_service.ip.nut_monitor_host.activate": {
|
||||
"owner": "default",
|
||||
"value": true
|
||||
},
|
||||
"services.nut.activate": {
|
||||
"services.nut_service.activate": {
|
||||
"owner": "default",
|
||||
"value": true
|
||||
},
|
||||
"services.nut.manage": {
|
||||
"services.nut_service.manage": {
|
||||
"owner": "default",
|
||||
"value": true
|
||||
}
|
||||
|
@ -1,9 +1,9 @@
|
||||
{
|
||||
"rougail.nut_monitor_netmask": "255.255.255.0",
|
||||
"rougail.nut_monitor_host": "192.168.0.0",
|
||||
"services.nut.ip.nut_monitor_host.name": "192.168.0.0",
|
||||
"services.nut.ip.nut_monitor_host.netmask": "255.255.255.0",
|
||||
"services.nut.ip.nut_monitor_host.activate": true,
|
||||
"services.nut.activate": true,
|
||||
"services.nut.manage": true
|
||||
"services.nut_service.ip.nut_monitor_host.name": "192.168.0.0",
|
||||
"services.nut_service.ip.nut_monitor_host.netmask": "255.255.255.0",
|
||||
"services.nut_service.ip.nut_monitor_host.activate": true,
|
||||
"services.nut_service.activate": true,
|
||||
"services.nut_service.manage": true
|
||||
}
|
||||
|
@ -7,23 +7,23 @@
|
||||
"owner": "default",
|
||||
"value": "192.168.0.0"
|
||||
},
|
||||
"services.nut.ip.nut_monitor_host.name": {
|
||||
"services.nut_service.ip.nut_monitor_host.name": {
|
||||
"owner": "default",
|
||||
"value": "192.168.0.0"
|
||||
},
|
||||
"services.nut.ip.nut_monitor_host.netmask": {
|
||||
"services.nut_service.ip.nut_monitor_host.netmask": {
|
||||
"owner": "default",
|
||||
"value": "255.255.255.0"
|
||||
},
|
||||
"services.nut.ip.nut_monitor_host.activate": {
|
||||
"services.nut_service.ip.nut_monitor_host.activate": {
|
||||
"owner": "default",
|
||||
"value": true
|
||||
},
|
||||
"services.nut.activate": {
|
||||
"services.nut_service.activate": {
|
||||
"owner": "default",
|
||||
"value": true
|
||||
},
|
||||
"services.nut.manage": {
|
||||
"services.nut_service.manage": {
|
||||
"owner": "default",
|
||||
"value": true
|
||||
}
|
||||
|
@ -24,6 +24,6 @@ option_7 = OptionDescription(name="nut_monitor_host", doc="nut_monitor_host", ch
|
||||
option_6 = OptionDescription(name="ip", doc="ip", children=[option_7])
|
||||
option_11 = BoolOption(name="activate", doc="activate", default=True)
|
||||
option_12 = BoolOption(name="manage", doc="manage", default=True)
|
||||
option_5 = OptionDescription(name="nut", doc="nut", children=[option_6, option_11, option_12])
|
||||
option_5 = OptionDescription(name="nut_service", doc="nut.service", children=[option_6, option_11, option_12])
|
||||
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