Merge "Added neutron options for Horizon"

This commit is contained in:
Jenkins
2014-06-10 20:59:28 +00:00
committed by Gerrit Code Review
2 changed files with 12 additions and 0 deletions

View File

@@ -162,6 +162,16 @@ def create_manifest(config, messages):
else:
config["CONFIG_HORIZON_SSL"] = 'false'
if config["CONFIG_LBAAS_INSTALL"] == 'y':
config["CONFIG_HORIZON_NEUTRON_LB"] = 'true'
else:
config["CONFIG_HORIZON_NEUTRON_LB"] = 'false'
if config["CONFIG_NEUTRON_FWAAS"] == 'y':
config["CONFIG_HORIZON_NEUTRON_FW"] = 'true'
else:
config["CONFIG_HORIZON_NEUTRON_FW"] = 'false'
manifestdata = getManifestTemplate("horizon.pp")
appendManifestFile(manifestfile, manifestdata)