
- 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>
21 lines
366 B
Puppet
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,
|
|
}
|
|
}
|