From 898c6882c82d0db358841ac2a35fe9acb11fdc39 Mon Sep 17 00:00:00 2001 From: Cayo Puigdefabregas Date: Sat, 30 Jan 2021 15:09:30 +0100 Subject: [PATCH] fixed stop and restart services --- orchestra/management/commands/restartservices.py | 1 - orchestra/management/commands/stopservices.py | 1 - 2 files changed, 2 deletions(-) diff --git a/orchestra/management/commands/restartservices.py b/orchestra/management/commands/restartservices.py index 63754897..ea613566 100644 --- a/orchestra/management/commands/restartservices.py +++ b/orchestra/management/commands/restartservices.py @@ -7,5 +7,4 @@ from orchestra.management.commands.startservices import ManageServiceCommand class Command(ManageServiceCommand): services = settings.ORCHESTRA_RESTART_SERVICES action = 'restart' - option_list = BaseCommand.option_list help = 'Restart all related services. Usefull for reload configuration and files.' diff --git a/orchestra/management/commands/stopservices.py b/orchestra/management/commands/stopservices.py index ac0e6583..d0868b7a 100644 --- a/orchestra/management/commands/stopservices.py +++ b/orchestra/management/commands/stopservices.py @@ -7,5 +7,4 @@ from orchestra.management.commands.startservices import ManageServiceCommand class Command(ManageServiceCommand): services = settings.ORCHESTRA_STOP_SERVICES action = 'stop' - option_list = BaseCommand.option_list help = 'Stop all related services. Usefull for reload configuration and files.'