c2ae06011af2cf289fad008fb7b8c9ac90a3fea7
[mirror/dsa-puppet.git] / 3rdparty / modules / glance / manifests / client.pp
1 #
2 # Installs the glance python library.
3 #
4 # == parameters
5 #  * ensure - ensure state for pachage.
6 #
7 class glance::client (
8   $ensure = 'present'
9 ) {
10
11   include glance::params
12
13   package { 'python-glanceclient':
14     ensure => $ensure,
15     name   => $::glance::params::client_package_name,
16     tag    => ['openstack'],
17   }
18
19 }