Puppet Class: heat::client
- Defined in:
- manifests/client.pp
Overview
Class: heat::client
Installs the heat python library.
Parameters
- ensure
-
(Optional) Ensure state for package.
10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 |
# File 'manifests/client.pp', line 10
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
}
|