django-orchestra/orchestra/apps/orchestration/settings.py

26 lines
595 B
Python
Raw Normal View History

2014-05-08 16:59:35 +00:00
from os import path
from django.conf import settings
ORCHESTRATION_OS_CHOICES = getattr(settings, 'ORCHESTRATION_OS_CHOICES', (
('LINUX', "Linux"),
))
2014-10-10 17:17:20 +00:00
2014-05-08 16:59:35 +00:00
ORCHESTRATION_DEFAULT_OS = getattr(settings, 'ORCHESTRATION_DEFAULT_OS', 'LINUX')
2014-10-10 17:17:20 +00:00
2014-05-08 16:59:35 +00:00
ORCHESTRATION_SSH_KEY_PATH = getattr(settings, 'ORCHESTRATION_SSH_KEY_PATH',
path.join(path.expanduser('~'), '.ssh/id_rsa'))
2014-10-10 17:17:20 +00:00
2014-05-08 16:59:35 +00:00
ORCHESTRATION_ROUTER = getattr(settings, 'ORCHESTRATION_ROUTER',
'orchestra.apps.orchestration.models.Route'
)
2014-10-10 17:17:20 +00:00
2014-05-08 16:59:35 +00:00
ORCHESTRATION_TEMP_SCRIPT_PATH = getattr(settings, 'ORCHESTRATION_TEMP_SCRIPT_PATH',
'/dev/shm'
)