changed some logging from info to debug, removed startindex and depends from services
This commit is contained in:
parent
0aca9d7809
commit
37517c45f4
18 changed files with 35 additions and 104 deletions
|
@ -8,20 +8,12 @@ from core.service import CoreService
|
|||
class MyService(CoreService):
|
||||
name = "MyService"
|
||||
group = "Utility"
|
||||
depends = ()
|
||||
dirs = ()
|
||||
configs = ('myservice.sh',)
|
||||
startindex = 50
|
||||
startup = ('sh myservice.sh',)
|
||||
shutdown = ()
|
||||
configs = ("myservice.sh",)
|
||||
startup = ("sh myservice.sh",)
|
||||
|
||||
|
||||
class MyService2(CoreService):
|
||||
name = "MyService2"
|
||||
group = "Utility"
|
||||
depends = ()
|
||||
dirs = ()
|
||||
configs = ('myservice.sh',)
|
||||
startindex = 50
|
||||
startup = ('sh myservice.sh',)
|
||||
shutdown = ()
|
||||
configs = ("myservice.sh",)
|
||||
startup = ("sh myservice.sh",)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue