puppet-nova/manifests/compute.pp
Dan Bode 79f33222ad Remove trailing class param commas
To provide a hope for Puppet 2.6.x support
2012-04-09 23:57:21 -07:00

15 lines
422 B
Puppet

#schedulee this class should probably never be declared except
# from the virtualization implementation of the compute node
class nova::compute(
$enabled = false
) inherits nova {
nova::generic_service { 'compute':
enabled => $enabled,
package_name => $::nova::params::compute_package_name,
service_name => $::nova::params::compute_service_name,
before => Exec['networking-refresh']
}
}