Fix case inconsistency in Neutron on Ubuntu installation

Match case in code block to case in config files

Change-Id: I26faeca78159d258f904c0e7ee8e04b822e7a59c
Closes-Bug: #1665675
This commit is contained in:
Amy Marrich (spotz) 2017-02-17 10:30:33 -06:00
parent 6bce6be8dc
commit 55533225c1
4 changed files with 13 additions and 13 deletions

View File

@ -35,9 +35,9 @@ networking infrastructure for instances and handles security groups.
.. code-block:: ini
[vxlan]
enable_vxlan = True
enable_vxlan = true
local_ip = OVERLAY_INTERFACE_IP_ADDRESS
l2_population = True
l2_population = true
.. end
@ -56,7 +56,7 @@ networking infrastructure for instances and handles security groups.
[securitygroup]
# ...
enable_security_group = True
enable_security_group = true
firewall_driver = neutron.agent.linux.iptables_firewall.IptablesFirewallDriver
.. end

View File

@ -324,7 +324,7 @@ The :term:`DHCP agent` provides DHCP services for virtual networks.
# ...
interface_driver = linuxbridge
dhcp_driver = neutron.agent.linux.dhcp.Dnsmasq
enable_isolated_metadata = True
enable_isolated_metadata = true
.. end

View File

@ -88,7 +88,7 @@ Configure the server component
# ...
core_plugin = ml2
service_plugins = router
allow_overlapping_ips = True
allow_overlapping_ips = true
.. end
@ -147,8 +147,8 @@ Configure the server component
[DEFAULT]
# ...
notify_nova_on_port_status_changes = True
notify_nova_on_port_data_changes = True
notify_nova_on_port_status_changes = true
notify_nova_on_port_data_changes = true
[nova]
# ...
@ -274,7 +274,7 @@ and switching) virtual networking infrastructure for instances.
[securitygroup]
# ...
enable_ipset = True
enable_ipset = true
.. end
@ -310,9 +310,9 @@ networking infrastructure for instances and handles security groups.
.. code-block:: ini
[vxlan]
enable_vxlan = True
enable_vxlan = true
local_ip = OVERLAY_INTERFACE_IP_ADDRESS
l2_population = True
l2_population = true
.. end
@ -331,7 +331,7 @@ networking infrastructure for instances and handles security groups.
[securitygroup]
# ...
enable_security_group = True
enable_security_group = true
firewall_driver = neutron.agent.linux.iptables_firewall.IptablesFirewallDriver
.. end
@ -376,7 +376,7 @@ The :term:`DHCP agent` provides DHCP services for virtual networks.
# ...
interface_driver = linuxbridge
dhcp_driver = neutron.agent.linux.dhcp.Dnsmasq
enable_isolated_metadata = True
enable_isolated_metadata = true
.. end

View File

@ -266,7 +266,7 @@ Configure the Compute service to use the Networking service
project_name = service
username = neutron
password = NEUTRON_PASS
service_metadata_proxy = True
service_metadata_proxy = true
metadata_proxy_shared_secret = METADATA_SECRET
.. end