2014-05-08 16:59:35 +00:00
|
|
|
from django.core.management.base import BaseCommand
|
|
|
|
|
2015-10-01 17:11:05 +00:00
|
|
|
from orchestra import settings
|
2014-05-08 16:59:35 +00:00
|
|
|
from orchestra.management.commands.startservices import ManageServiceCommand
|
|
|
|
|
|
|
|
|
|
|
|
class Command(ManageServiceCommand):
|
2015-10-01 17:11:05 +00:00
|
|
|
services = settings.ORCHESTRA_STOP_SERVICES
|
2014-05-08 16:59:35 +00:00
|
|
|
action = 'stop'
|
|
|
|
help = 'Stop all related services. Usefull for reload configuration and files.'
|