Add network_manager param to controller class

So that users can override the network type when
they use the controller class.
This commit is contained in:
Dan Bode 2012-03-19 18:11:16 -07:00
parent 5b87afd398
commit 189d89887e
1 changed files with 2 additions and 0 deletions

View File

@ -18,6 +18,7 @@ class nova::controller(
$flat_network_bridge_ip = '11.0.0.1',
$flat_network_bridge_netmask = '255.255.255.0',
$network_manager = undef,
$nova_network = '11.0.0.0/24',
$floating_network = '10.128.0.0/24',
$available_ips = '256',
@ -49,6 +50,7 @@ class nova::controller(
rabbit_password => $rabbit_password,
rabbit_virtual_host => $rabbit_virtual_host,
lock_path => $lock_path,
network_manager => $network_manager,
}
class { "nova::api": enabled => true }