Files
puppet-openstacklib/manifests/openstackclient.pp
Gael Chamoulaud 62cdb1ae91 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: I2f24ebc7c1493572f0e638da3b7a9dc73784a8aa
Signed-off-by: Gael Chamoulaud <gchamoul@redhat.com>
2015-03-31 12:08:46 +02:00

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',
}
}