Merge pull request #244 from enovance/metering-agent

network/l3: add metering agent
This commit is contained in:
Yanis Guenane
2014-02-18 12:20:52 -05:00
2 changed files with 10 additions and 0 deletions

View File

@@ -35,4 +35,8 @@ class cloud::network::l3(
bridge => 'br-ex'
}
class { 'neutron::agents::metering':
debug => $debug,
}
}

View File

@@ -80,6 +80,12 @@ describe 'cloud::network::l3' do
:handle_internal_only_routers => false
)
end
it 'configure neutron metering agent' do
should contain_class('neutron::agents::metering').with(
:debug => true
)
end
end
context 'on Debian platforms' do