puppet-glance/manifests/client.pp
Dan Bode 53d2b7eeb6 glance::client was not installing the correct package
The actually glance executable is not installed as a part
of the python-glance package, it is installed in the
python-glanceclient pakcage.

Going through the RDO packages, I do not even see a package
called python-glance.

Change-Id: I35c71fc5da595a695b10cb2ecc5ad27f5131bac8
2013-06-20 10:22:27 -07:00

19 lines
295 B
Puppet

#
# Installs the glance python library.
#
# == parameters
# * ensure - ensure state for pachage.
#
class glance::client (
$ensure = 'present'
) {
include glance::params
package { 'python-glanceclient':
name => $::glance::params::client_package_name,
ensure => $ensure,
}
}