add systemd timer + a service and a timer can have same name
This commit is contained in:
@ -1,9 +1,9 @@
|
||||
{
|
||||
"services.tata.activate": {
|
||||
"services.tata_service.activate": {
|
||||
"owner": "default",
|
||||
"value": true
|
||||
},
|
||||
"services.tata.manage": {
|
||||
"services.tata_service.manage": {
|
||||
"owner": "default",
|
||||
"value": true
|
||||
}
|
||||
|
@ -1,4 +1,4 @@
|
||||
{
|
||||
"services.tata.activate": true,
|
||||
"services.tata.manage": true
|
||||
"services.tata_service.activate": true,
|
||||
"services.tata_service.manage": true
|
||||
}
|
||||
|
@ -1,9 +1,9 @@
|
||||
{
|
||||
"services.tata.activate": {
|
||||
"services.tata_service.activate": {
|
||||
"owner": "default",
|
||||
"value": true
|
||||
},
|
||||
"services.tata.manage": {
|
||||
"services.tata_service.manage": {
|
||||
"owner": "default",
|
||||
"value": true
|
||||
}
|
||||
|
@ -16,6 +16,6 @@ except:
|
||||
from tiramisu import *
|
||||
option_3 = BoolOption(name="activate", doc="activate", default=True)
|
||||
option_4 = BoolOption(name="manage", doc="manage", default=True)
|
||||
option_2 = OptionDescription(name="tata", doc="tata", children=[option_3, option_4])
|
||||
option_2 = OptionDescription(name="tata_service", doc="tata.service", children=[option_3, option_4])
|
||||
option_1 = OptionDescription(name="services", doc="services", children=[option_2], properties=frozenset({"hidden"}))
|
||||
option_0 = OptionDescription(name="baseoption", doc="baseoption", children=[option_1])
|
||||
|
Reference in New Issue
Block a user