Add class parameter lockpath to controller class

So that the controller class can override
lockpath.
This commit is contained in:
Dan Bode 2012-03-19 18:10:03 -07:00
parent d5dc26c7f3
commit 605c055e3e
1 changed files with 4 additions and 1 deletions

View File

@ -30,7 +30,9 @@ class nova::controller(
$admin_user = 'novaadmin',
$project_name = 'nova',
$verbose = undef
$verbose = undef,
$lock_path = undef,
) {
@ -46,6 +48,7 @@ class nova::controller(
rabbit_userid => $rabbit_userid,
rabbit_password => $rabbit_password,
rabbit_virtual_host => $rabbit_virtual_host,
lock_path => $lock_path,
}
class { "nova::api": enabled => true }