puppet-nova/manifests/cert.pp
Michael Chapman 1630f4aa57 Make parameter doc RDoc compatible
The patch fixes the parameter documentation in
api, cert, compute and client to conform with
the style guide and support autogenerating
paramter documentation.

Change-Id: I94c6807a18be5eb27697eaa060a0e885a7d44cbe
2013-12-12 11:17:08 +11:00

30 lines
627 B
Puppet

# == Class: nova::cert
#
# Installs nova cert package and service
#
# === Parameters:
#
# [*enabled*]
# (optional) Whether or not to enable the nova cert service
# Defaults to false
#
# [*ensure_package*]
# (optional) The state to set for the nova-cert package
# Defaults to 'present'
#
class nova::cert(
$enabled = false,
$ensure_package = 'present'
) {
include nova::params
nova::generic_service { 'cert':
enabled => $enabled,
package_name => $::nova::params::cert_package_name,
service_name => $::nova::params::cert_service_name,
ensure_package => $ensure_package,
}
}