5f6411c3dd
Change-Id: I9982b8476ca9dab8a338b66db75d6da6519f9266
26 lines
420 B
Puppet
26 lines
420 B
Puppet
# == Class: heat::client
|
|
#
|
|
# Installs the heat python library.
|
|
#
|
|
# === Parameters
|
|
#
|
|
# [*ensure*]
|
|
# (Optional) Ensure state for package.
|
|
#
|
|
class heat::client (
|
|
$ensure = 'present'
|
|
) {
|
|
|
|
include heat::deps
|
|
include heat::params
|
|
|
|
package { 'python-heatclient':
|
|
ensure => $ensure,
|
|
name => $::heat::params::client_package_name,
|
|
tag => 'openstack',
|
|
}
|
|
|
|
include '::openstacklib::openstackclient'
|
|
|
|
}
|