Gael Chamoulaud 0d8dc6f095 Add puppet-lint-param-docs plugins to puppet-lint
- This puppet-lint plugin checks if all parameters are documented
- Fix all the undocumented parameters.

Change-Id: Id9a9d11a972f6db46ed047b0a1f223995193476a
Signed-off-by: Gael Chamoulaud <gchamoul@redhat.com>
2015-03-05 09:02:53 +01:00

21 lines
366 B
Puppet

# == Class: manila::client
#
# Installs Manila python client.
#
# === Parameters
#
# [*package_ensure*]
# Ensure state for package. Defaults to 'present'.
#
class manila::client (
$package_ensure = 'present'
) {
include ::manila::params
package { 'python-manilaclient':
ensure => $package_ensure,
name => $::manila::params::client_package,
}
}