Files
puppet-nova/manifests/client.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

20 lines
275 B
Puppet

# == Class nova::client
#
# installs nova client
#
# === Parameters:
#
# [*ensure*]
# (optional) The state for the nova client package
# Defaults to 'present'
#
class nova::client(
$ensure = 'present'
) {
package { 'python-novaclient':
ensure => $ensure,
}
}