fix example service config file names
This commit is contained in:
parent
e03ccdf0c0
commit
a4c5e32e5a
1 changed files with 1 additions and 1 deletions
|
@ -22,7 +22,7 @@ class MyService(CoreService):
|
||||||
dirs = ()
|
dirs = ()
|
||||||
# Files that this service will generate, without a full path this file goes in the node's directory.
|
# Files that this service will generate, without a full path this file goes in the node's directory.
|
||||||
# e.g. /tmp/pycore.12345/n1.conf/myfile
|
# e.g. /tmp/pycore.12345/n1.conf/myfile
|
||||||
configs = ("sh myservice1.sh", "sh myservice2.sh")
|
configs = ("myservice1.sh", "myservice2.sh")
|
||||||
# Commands used to start this service, any non-zero exit code will cause a failure.
|
# Commands used to start this service, any non-zero exit code will cause a failure.
|
||||||
startup = ("sh %s" % configs[0], "sh %s" % configs[1])
|
startup = ("sh %s" % configs[0], "sh %s" % configs[1])
|
||||||
# Commands used to validate that a service was started, any non-zero exit code will cause a failure.
|
# Commands used to validate that a service was started, any non-zero exit code will cause a failure.
|
||||||
|
|
Loading…
Add table
Reference in a new issue