Merge "Adds path separator character configuration for images"

This commit is contained in:
Jenkins 2014-05-02 16:28:12 +00:00 committed by Gerrit Code Review
commit f8249a123b

View File

@ -37,6 +37,11 @@ class ImagesConfig(ConfigSectionInterface):
"""The default user created when a server is booted."""
return self.get("primary_image_default_user")
@property
def primary_image_path_separator(self):
"""The character used to separate directories for the image."""
return self.get("primary_image_path_separator", "/")
@property
def secondary_image(self):
"""Alternate image to be used in compute test"""