puppet-keystone/manifests/client.pp

22 lines
356 B
Puppet

# == Class: keystone::client
#
# Installs Keystone client.
#
# === Parameters
#
# [*ensure*]
# (optional) Ensure state of the package.
# Defaults to 'present'.
#
class keystone::client (
$ensure = 'present'
) {
package { 'python-keystoneclient':
ensure => $ensure,
tag => 'openstack',
}
include '::openstacklib::openstackclient'
}