Adds path separator character configuration for images

Change-Id: Ibe92f2b8e596146526af0b949b3460d424aba6e7
This commit is contained in:
Daryl Walleck 2014-04-28 17:53:37 -05:00
parent a83a99cd80
commit b9ca5945f2

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"""