Sebastien Badia a3bdaad473 Add missing puppetdoc and lint all parameter documentation
Un-pin puppet-lint gem and add puppet-lint-param-docs, this commit also
add missing puppetdoc and fixes lint issues.

Change-Id: I1eefc743c68c75eb54a65b3cc539922ef3a3b04d
2015-03-15 18:09:16 +01:00

26 lines
580 B
Puppet

# == Class keystone::python
#
# installs client python libraries for keystone
#
# === Parameters:
#
# [*client_package_name*]
# (optional) The name of python keystone client package
# Defaults to $keystone::params::client_package_name
#
# [*ensure*]
# (optional) The state for the keystone client package
# Defaults to 'present'
#
class keystone::python (
$client_package_name = $keystone::params::client_package_name,
$ensure = 'present'
) inherits keystone::params {
package { 'python-keystone' :
ensure => $ensure,
name => $client_package_name,
}
}