11 lines
352 B
Python
11 lines
352 B
Python
|
from django.core.management.base import BaseCommand
|
||
|
|
||
|
from orchestra import settings
|
||
|
from orchestra.management.commands.startservices import ManageServiceCommand
|
||
|
|
||
|
|
||
|
class Command(ManageServiceCommand):
|
||
|
services = settings.ORCHESTRA_STOP_SERVICES
|
||
|
action = 'stop'
|
||
|
help = 'Stop all related services. Usefull for reload configuration and files.'
|