diff options
author | James Slagle <jslagle@redhat.com> | 2016-02-12 13:08:37 -0500 |
---|---|---|
committer | James Slagle <jslagle@redhat.com> | 2016-02-12 13:08:37 -0500 |
commit | 12d7be9160ecf21feed993356d73ce9e14365e06 (patch) | |
tree | f08c77a5b7af44e9e304484b00e95ca80ae2d4d3 /puppet | |
parent | 8d763fc70c33695a4752b04656d3904561cc19f3 (diff) |
Add missing : in hieradata key name
This hieradata key, neutron::agents::ml2::ovs:bridge_mappings was
missing a : before bridge_mappings causing the value to be blank in
/etc/neutron/plugins/ml2/openvswitch_agent.ini even if a value had been
specified.
Change-Id: I377565d3fb821be1bb2dc7d92ec1ad25a4a3b1f1
Diffstat (limited to 'puppet')
-rw-r--r-- | puppet/controller.yaml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/puppet/controller.yaml b/puppet/controller.yaml index bad99378..98d71c13 100644 --- a/puppet/controller.yaml +++ b/puppet/controller.yaml @@ -1416,7 +1416,7 @@ resources: neutron::plugins::ml2::network_vlan_ranges: {get_input: neutron_network_vlan_ranges} neutron::plugins::ml2::tunnel_id_ranges: {get_input: neutron_tunnel_id_ranges} neutron::plugins::ml2::vni_ranges: {get_input: neutron_vni_ranges} - neutron::agents::ml2::ovs:bridge_mappings: {get_input: neutron_bridge_mappings} + neutron::agents::ml2::ovs::bridge_mappings: {get_input: neutron_bridge_mappings} neutron_public_interface: {get_input: neutron_public_interface} neutron_public_interface_raw_device: {get_input: neutron_public_interface_raw_device} neutron_public_interface_default_route: {get_input: neutron_public_interface_default_route} |