fixed stop and restart services
This commit is contained in:
parent
a236bbdf5d
commit
898c6882c8
|
@ -7,5 +7,4 @@ from orchestra.management.commands.startservices import ManageServiceCommand
|
||||||
class Command(ManageServiceCommand):
|
class Command(ManageServiceCommand):
|
||||||
services = settings.ORCHESTRA_RESTART_SERVICES
|
services = settings.ORCHESTRA_RESTART_SERVICES
|
||||||
action = 'restart'
|
action = 'restart'
|
||||||
option_list = BaseCommand.option_list
|
|
||||||
help = 'Restart all related services. Usefull for reload configuration and files.'
|
help = 'Restart all related services. Usefull for reload configuration and files.'
|
||||||
|
|
|
@ -7,5 +7,4 @@ from orchestra.management.commands.startservices import ManageServiceCommand
|
||||||
class Command(ManageServiceCommand):
|
class Command(ManageServiceCommand):
|
||||||
services = settings.ORCHESTRA_STOP_SERVICES
|
services = settings.ORCHESTRA_STOP_SERVICES
|
||||||
action = 'stop'
|
action = 'stop'
|
||||||
option_list = BaseCommand.option_list
|
|
||||||
help = 'Stop all related services. Usefull for reload configuration and files.'
|
help = 'Stop all related services. Usefull for reload configuration and files.'
|
||||||
|
|
Loading…
Reference in New Issue