Fix 'network' (newtork) mispellings

The neutron::l3_agent::newtork_device_mtu deprecation message
is mispelled.

Also fixes the 'newtork' spelling in a couple other places as well.

Change-Id: Ica506a404c2076bb188d6085d8ce675e299a20a4
This commit is contained in:
Dan Prince 2014-12-15 15:50:43 -05:00
parent 109abb2364
commit 71a9a0b927
3 changed files with 4 additions and 4 deletions

View File

@ -17,7 +17,7 @@ neutron
Overview
--------
The neutron module is a part of [Stackforge](https://github.com/stackforge), an effort by the Openstack infrastructure team to provide continuous integration testing and code review for Openstack and Openstack community projects not part of the core software. The module itself is used to flexibly configure and manage the newtork service for Openstack.
The neutron module is a part of [Stackforge](https://github.com/stackforge), an effort by the Openstack infrastructure team to provide continuous integration testing and code review for Openstack and Openstack community projects not part of the core software. The module itself is used to flexibly configure and manage the network service for Openstack.
Module Description
------------------

View File

@ -164,12 +164,12 @@ class neutron::agents::l3 (
}
if $network_device_mtu {
warning('The neutron::l3_agent::newtork_device_mtu parameter is deprecated, use neutron::newtork_device_mtu instead.')
warning('The neutron::l3_agent::network_device_mtu parameter is deprecated, use neutron::network_device_mtu instead.')
neutron_l3_agent_config {
'DEFAULT/network_device_mtu': value => $network_device_mtu;
}
} else {
warning('The neutron::l3_agent::newtork_device_mtu parameter is deprecated, use neutron::newtork_device_mtu instead.')
warning('The neutron::l3_agent::network_device_mtu parameter is deprecated, use neutron::network_device_mtu instead.')
neutron_l3_agent_config {
'DEFAULT/network_device_mtu': ensure => absent;
}

View File

@ -395,7 +395,7 @@ describe 'neutron' do
end
it do
should contina_neutron_config('DEFAULT/network_device_mtu').with_value(params[:newtork_device_mtu])
should contain_neutron_config('DEFAULT/network_device_mtu').with_value(params[:network_device_mtu])
end
end