Remove trailing class param commas
To provide a hope for Puppet 2.6.x support
This commit is contained in:
parent
a27bc9d42d
commit
79f33222ad
@ -1,7 +1,7 @@
|
||||
#schedulee this class should probably never be declared except
|
||||
# from the virtualization implementation of the compute node
|
||||
class nova::compute(
|
||||
$enabled = false,
|
||||
$enabled = false
|
||||
) inherits nova {
|
||||
|
||||
nova::generic_service { 'compute':
|
||||
|
@ -13,7 +13,7 @@
|
||||
define nova::generic_service(
|
||||
$package_name,
|
||||
$service_name,
|
||||
$enabled = false,
|
||||
$enabled = false
|
||||
) {
|
||||
|
||||
include nova::params
|
||||
|
@ -31,7 +31,7 @@ class nova(
|
||||
$auth_uri = 'http://127.0.0.1:5000/v2.0',
|
||||
$admin_tenant_name = 'services',
|
||||
$admin_user = 'nova',
|
||||
$admin_password = 'passw0rd',
|
||||
$admin_password = 'passw0rd'
|
||||
) inherits nova::params {
|
||||
|
||||
# all nova_config resources should be applied
|
||||
|
Loading…
Reference in New Issue
Block a user