
- This puppet-lint plugin checks if all parameters are documented - Fix all the undocumented parameters. Change-Id: I2f24ebc7c1493572f0e638da3b7a9dc73784a8aa Signed-off-by: Gael Chamoulaud <gchamoul@redhat.com>
19 lines
380 B
Puppet
19 lines
380 B
Puppet
# == Class: openstacklib::openstackclient
|
|
#
|
|
# Installs the openstackclient
|
|
#
|
|
# == Parameters
|
|
#
|
|
# [*package_ensure*]
|
|
# Ensure state of the openstackclient package.
|
|
# Optional. Defaults to 'present'.
|
|
#
|
|
class openstacklib::openstackclient(
|
|
$package_ensure = 'present',
|
|
){
|
|
package { 'python-openstackclient':
|
|
ensure => $package_ensure,
|
|
tag => 'openstack',
|
|
}
|
|
}
|