puppet-heat/manifests/client.pp

20 lines
290 B
Puppet

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