puppet-heat/manifests/client.pp
Tobias Urdin 5f6411c3dd Convert all class usage to relative names
Change-Id: I9982b8476ca9dab8a338b66db75d6da6519f9266
2019-12-08 23:07:36 +01:00

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'
}