2013-06-05 13:06:05 -04:00
|
|
|
# == Class: keystone::client
|
|
|
|
#
|
|
|
|
# Installs Keystone client.
|
|
|
|
#
|
|
|
|
# === Parameters
|
|
|
|
#
|
2016-02-18 14:16:43 -07:00
|
|
|
# [*client_package_name*]
|
|
|
|
# (optional) The name of python keystone client package
|
|
|
|
# Defaults to $keystone::params::client_package_name
|
|
|
|
#
|
2013-06-05 13:06:05 -04:00
|
|
|
# [*ensure*]
|
2015-03-15 16:23:09 +01:00
|
|
|
# (optional) Ensure state of the package.
|
|
|
|
# Defaults to 'present'.
|
2013-06-05 13:06:05 -04:00
|
|
|
#
|
|
|
|
class keystone::client (
|
2016-02-18 14:16:43 -07:00
|
|
|
$client_package_name = $keystone::params::client_package_name,
|
2013-06-05 13:06:05 -04:00
|
|
|
$ensure = 'present'
|
2016-02-18 14:16:43 -07:00
|
|
|
) inherits keystone::params {
|
2013-06-05 13:06:05 -04:00
|
|
|
|
2019-12-08 23:09:22 +01:00
|
|
|
include keystone::deps
|
2016-02-23 18:31:15 -07:00
|
|
|
|
2023-05-26 10:59:14 +09:00
|
|
|
warning("The keystone::client class has been deprecated and will be removed \
|
|
|
|
in a future release.")
|
|
|
|
|
2013-06-05 13:06:05 -04:00
|
|
|
package { 'python-keystoneclient':
|
|
|
|
ensure => $ensure,
|
2016-02-18 14:16:43 -07:00
|
|
|
name => $client_package_name,
|
2015-02-05 20:26:43 -07:00
|
|
|
tag => 'openstack',
|
2013-06-05 13:06:05 -04:00
|
|
|
}
|
2015-08-06 17:41:01 +03:00
|
|
|
|
2020-07-13 21:16:26 +02:00
|
|
|
include openstacklib::openstackclient
|
2013-06-05 13:06:05 -04:00
|
|
|
}
|