django-orchestra/orchestra/contrib/vps/settings.py

22 lines
372 B
Python
Raw Normal View History

2014-05-08 16:59:35 +00:00
from django.conf import settings
VPS_TYPES = getattr(settings, 'VPS_TYPES', (
('openvz', 'OpenVZ container'),
))
VPS_DEFAULT_TYPE = getattr(settings, 'VPS_DEFAULT_TYPE',
'openvz'
)
2014-05-08 16:59:35 +00:00
VPS_TEMPLATES = getattr(settings, 'VPS_TEMPLATES', (
('debian7', 'Debian 7 - Wheezy'),
))
VPS_DEFAULT_TEMPLATE = getattr(settings, 'VPS_DEFAULT_TEMPLATE',
'debian7'
)