Fix fwaas package name for Ubuntu and Debian

The name of the source package is misleading. The name of the binary
package is actually python-neutron-fwaas, not neutron-fwaas.

http://ubuntu-cloud.archive.canonical.com/ubuntu/dists/trusty-updates/kilo/main/binary-amd64/Packages
https://packages.debian.org/sid/python-neutron-fwaas

Change-Id: If03c6dbd4391f5c1a0ee540a68a9b09ec3b2a264
This commit is contained in:
Colleen Murphy 2015-05-29 16:33:51 -07:00
parent dea7f4719f
commit 28e53c9e9f
2 changed files with 3 additions and 3 deletions

View File

@ -142,7 +142,7 @@ class neutron::params {
$l3_agent_package = 'neutron-l3-agent'
$l3_agent_service = 'neutron-l3-agent'
$fwaas_package = 'neutron-fwaas'
$fwaas_package = 'python-neutron-fwaas'
$cliff_package = 'python-cliff'
$kernel_headers = "linux-headers-${::kernelrelease}"

View File

@ -55,7 +55,7 @@ describe 'neutron::services::fwaas' do
it_configures 'neutron fwaas service plugin'
it 'installs neutron fwaas package' do
is_expected.to contain_package('neutron-fwaas').with(
is_expected.to contain_package('python-neutron-fwaas').with(
:ensure => 'present',
:tag => 'openstack'
)
@ -71,7 +71,7 @@ describe 'neutron::services::fwaas' do
it_configures 'neutron fwaas service plugin'
it 'installs neutron fwaas package' do
is_expected.to contain_package('neutron-fwaas').with(
is_expected.to contain_package('python-neutron-fwaas').with(
:ensure => 'present',
:tag => 'openstack'
)