You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
646 B
30 lines
646 B
# == Class: keystone::client
|
|
#
|
|
# Installs Keystone client.
|
|
#
|
|
# === Parameters
|
|
#
|
|
# [*client_package_name*]
|
|
# (optional) The name of python keystone client package
|
|
# Defaults to $keystone::params::client_package_name
|
|
#
|
|
# [*ensure*]
|
|
# (optional) Ensure state of the package.
|
|
# Defaults to 'present'.
|
|
#
|
|
class keystone::client (
|
|
$client_package_name = $keystone::params::client_package_name,
|
|
$ensure = 'present'
|
|
) inherits keystone::params {
|
|
|
|
include keystone::deps
|
|
|
|
package { 'python-keystoneclient':
|
|
ensure => $ensure,
|
|
name => $client_package_name,
|
|
tag => 'openstack',
|
|
}
|
|
|
|
include openstacklib::openstackclient
|
|
}
|