fixed stop and restart services

This commit is contained in:
Cayo Puigdefabregas 2021-01-30 15:09:30 +01:00
parent a236bbdf5d
commit 898c6882c8
2 changed files with 0 additions and 2 deletions

View File

@ -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.'

View File

@ -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.'