
This changes the puppet-lint requirement to 1.1.x, so that we can use puppet-lint plugins. Most of these plugins are for 4.x compat, but some just catch common errors. Change-Id: I6a4e08d91f8cc19eb1e59af03a2a7d14716ddc38
22 lines
380 B
Puppet
22 lines
380 B
Puppet
# == Class: cinder::client
|
|
#
|
|
# Installs Cinder python client.
|
|
#
|
|
# === Parameters
|
|
#
|
|
# [*package_ensure*]
|
|
# (Optional) Ensure state for package.
|
|
# Defaults to 'present'.
|
|
#
|
|
class cinder::client(
|
|
$package_ensure = 'present'
|
|
) {
|
|
|
|
include ::cinder::params
|
|
|
|
package { 'python-cinderclient':
|
|
ensure => $package_ensure,
|
|
name => $::cinder::params::client_package,
|
|
}
|
|
}
|