django-orchestra/orchestra/management/commands/restartservices.py

12 lines
401 B
Python
Raw Normal View History

2014-05-08 16:59:35 +00:00
from django.core.management.base import BaseCommand
from orchestra.management.commands.startservices import ManageServiceCommand
from orchestra.settings import RESTART_SERVICES
class Command(ManageServiceCommand):
services = RESTART_SERVICES
action = 'restart'
option_list = BaseCommand.option_list
help = 'Restart all related services. Usefull for reload configuration and files.'