try again, with puppetforge modules, correctly included now
[mirror/dsa-puppet.git] / 3rdparty / modules / cinder / manifests / client.pp
1 # == Class: cinder::client
2 #
3 # Installs Cinder python client.
4 #
5 # === Parameters
6 #
7 # [*ensure*]
8 #   Ensure state for package. Defaults to 'present'.
9 #
10 class cinder::client(
11   $package_ensure = 'present'
12 ) {
13
14   include cinder::params
15
16   package { 'python-cinderclient':
17     ensure => $package_ensure,
18     name   => $::cinder::params::client_package,
19   }
20 }