puppet-barbican/manifests/client.pp
Tobias Urdin 57af2573d6 Convert all class usage to relative names
Change-Id: I3c86c44a0e190ea92180e792a291d4ee5ff63da0
2019-12-08 15:15:52 +01:00

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
}