From f62e10b6be506e631032c8111f613c5b5fa56baa Mon Sep 17 00:00:00 2001 From: Ivan Chavero Date: Fri, 28 Mar 2014 18:19:41 -0700 Subject: [PATCH] Fixes wrong host list for firewall rules Previous patch added firewall rules for neutron plugin but missed to set the correct host list. Change-Id: I2baa204907c7c1529026b4f09686bb49433dfe2c --- packstack/plugins/neutron_350.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packstack/plugins/neutron_350.py b/packstack/plugins/neutron_350.py index eec13aa9a..109615693 100644 --- a/packstack/plugins/neutron_350.py +++ b/packstack/plugins/neutron_350.py @@ -667,7 +667,7 @@ def create_manifests(config): manifest_file = "%s_neutron.pp" % (host,) manifest_data = getManifestTemplate("neutron_api.pp") # Firewall Rules - for f_host in q_hosts: + for f_host in allowed_hosts: config['FIREWALL_ALLOWED'] = "'%s'" % f_host config['FIREWALL_SERVICE_ID'] = "neutron_server_%s_%s" % (host, f_host) manifest_data += getManifestTemplate("firewall.pp")