Skip to content

Commit

Permalink
Remove trailing class param commas
Browse files Browse the repository at this point in the history
    
To provide a hope for Puppet 2.6.x support
  • Loading branch information
Dan Bode committed Apr 10, 2012
1 parent a27bc9d commit 79f3322
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion manifests/compute.pp
Original file line number Diff line number Diff line change
@@ -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':
Expand Down
2 changes: 1 addition & 1 deletion manifests/generic_service.pp
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
define nova::generic_service(
$package_name,
$service_name,
$enabled = false,
$enabled = false
) {

include nova::params
Expand Down
2 changes: 1 addition & 1 deletion manifests/init.pp
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
$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
Expand Down

0 comments on commit 79f3322

Please sign in to comment.