puppet-barbican/manifests/client.pp

26 lines
483 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', 'openstackclient'],
}
include openstacklib::openstackclient
}