0d83409381
Add puppet parameters lint (with puppet-lint-param-docs gem) and fix missing documentations, this commit also fix metadata.json file (SPDX license, and open dependencies). Change-Id: I0d590b930a8d0263c3a74d861b9786770be7d183
22 lines
369 B
Puppet
22 lines
369 B
Puppet
#
|
|
# Installs the glance python library.
|
|
#
|
|
# == parameters
|
|
# [*ensure*]
|
|
# (Optional) Ensure state for pachage.
|
|
# Defaults to 'present'
|
|
#
|
|
class glance::client (
|
|
$ensure = 'present'
|
|
) {
|
|
|
|
include ::glance::params
|
|
|
|
package { 'python-glanceclient':
|
|
ensure => $ensure,
|
|
name => $::glance::params::client_package_name,
|
|
tag => ['openstack'],
|
|
}
|
|
|
|
}
|