
The minimum version of puppetlabs-stdlib has been bumped globally, so now we can use the common type definition. Change-Id: I9331265b23fbe6df905e83a0dc07e9d84f6544cf Signed-off-by: Takashi Kajinami <kajinamit@oss.nttdata.com>
25 lines
492 B
Puppet
25 lines
492 B
Puppet
# == Class: cinder::client
|
|
#
|
|
# Installs Cinder python client.
|
|
#
|
|
# === Parameters
|
|
#
|
|
# [*package_ensure*]
|
|
# (Optional) Ensure state for package.
|
|
# Defaults to 'present'.
|
|
#
|
|
class cinder::client (
|
|
Stdlib::Ensure::Package $package_ensure = 'present',
|
|
) {
|
|
include cinder::deps
|
|
include cinder::params
|
|
|
|
package { 'python-cinderclient':
|
|
ensure => $package_ensure,
|
|
name => $cinder::params::client_package,
|
|
tag => 'openstack',
|
|
}
|
|
|
|
include openstacklib::openstackclient
|
|
}
|