You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
419 B
23 lines
419 B
#
|
|
# Installs the glance python library.
|
|
#
|
|
# == parameters
|
|
# [*ensure*]
|
|
# (Optional) Ensure state for pachage.
|
|
# Defaults to 'present'
|
|
#
|
|
class glance::client(
|
|
$ensure = 'present'
|
|
) {
|
|
|
|
include ::glance::deps
|
|
include ::glance::params
|
|
|
|
package { 'python-glanceclient':
|
|
ensure => $ensure,
|
|
name => $::glance::params::client_package_name,
|
|
tag => ['openstack', 'glance-support-package'],
|
|
}
|
|
|
|
}
|