Merge "Ensure tunnel types are absent if not configured"

This commit is contained in:
Zuul 2019-06-13 19:37:20 +00:00 committed by Gerrit Code Review
commit b576983343
2 changed files with 2 additions and 0 deletions

View File

@ -313,6 +313,7 @@ class neutron::agents::ml2::ovs (
'ovs/local_ip': ensure => absent;
'ovs/int_peer_patch_port': ensure => absent;
'ovs/tun_peer_patch_port': ensure => absent;
'agent/tunnel_types': ensure => absent;
}
}

View File

@ -59,6 +59,7 @@ describe 'neutron::agents::ml2::ovs' do
should contain_neutron_agent_ovs('ovs/local_ip').with_ensure('absent')
should contain_neutron_agent_ovs('ovs/int_peer_patch_port').with_ensure('absent')
should contain_neutron_agent_ovs('ovs/tun_peer_patch_port').with_ensure('absent')
should contain_neutron_agent_ovs('agent/tunnel_types').with_ensure('absent')
end
it 'installs neutron ovs agent package' do