Mathieu Gagné 9ff631efbc Add missing puppet doc
Change-Id: Ic1620ba4e011f71a36e1958af140f0e696754dc1
2013-08-28 13:57:18 -04:00

21 lines
355 B
Puppet

# == Class: cinder::client
#
# Installs Cinder python client.
#
# === Parameters
#
# [*ensure*]
# 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,
}
}