summaryrefslogtreecommitdiffstats
path: root/lib/python/apex
diff options
context:
space:
mode:
authorTim Rozet <trozet@redhat.com>2016-12-15 10:31:54 -0500
committerTim Rozet <trozet@redhat.com>2016-12-15 10:31:54 -0500
commit237a8c10f16356b03b6dd64fe9d6e9a33a9e86d5 (patch)
tree3248a6db3741959f994d818868d1d26fd7d35903 /lib/python/apex
parent7b6a6ab8088902a20678541195867388d38423e7 (diff)
Fixes issue where ceph was being disabled by default
JIRA: APEX-374 Change-Id: Id7509d6c6528310cefc62522d3a90ddee19146a9 Signed-off-by: Tim Rozet <trozet@redhat.com>
Diffstat (limited to 'lib/python/apex')
-rw-r--r--lib/python/apex/deploy_settings.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/python/apex/deploy_settings.py b/lib/python/apex/deploy_settings.py
index 3583646b..e2d37c82 100644
--- a/lib/python/apex/deploy_settings.py
+++ b/lib/python/apex/deploy_settings.py
@@ -82,6 +82,8 @@ class DeploySettings(dict):
if req_set not in deploy_options:
if req_set == 'dataplane':
self['deploy_options'][req_set] = 'ovs'
+ elif req_set == 'ceph':
+ self['deploy_options'][req_set] = True
else:
self['deploy_options'][req_set] = False