
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
20 lines
275 B
Puppet
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,
|
|
}
|
|
|
|
}
|