57af2573d6
Change-Id: I3c86c44a0e190ea92180e792a291d4ee5ff63da0
26 lines
462 B
Puppet
26 lines
462 B
Puppet
# == Class: barbican::client
|
|
#
|
|
# Installs Barbican client.
|
|
#
|
|
# === Parameters
|
|
#
|
|
# [*ensure*]
|
|
# (optional) Ensure state of the package.
|
|
# Defaults to 'present'.
|
|
#
|
|
class barbican::client (
|
|
$ensure = 'present',
|
|
) {
|
|
|
|
include barbican::deps
|
|
include barbican::params
|
|
|
|
package { 'python-barbicanclient':
|
|
ensure => $ensure,
|
|
name => $::barbican::params::client_package_name,
|
|
tag => 'openstack',
|
|
}
|
|
|
|
include openstacklib::openstackclient
|
|
}
|