2015-03-15 16:23:09 +01:00
|
|
|
# == Class keystone::python
|
2012-10-31 12:33:09 -07:00
|
|
|
#
|
|
|
|
# installs client python libraries for keystone
|
|
|
|
#
|
2015-03-15 16:23:09 +01:00
|
|
|
# === Parameters:
|
|
|
|
#
|
|
|
|
# [*client_package_name*]
|
|
|
|
# (optional) The name of python keystone client package
|
|
|
|
# Defaults to $keystone::params::client_package_name
|
|
|
|
#
|
|
|
|
# [*ensure*]
|
|
|
|
# (optional) The state for the keystone client package
|
|
|
|
# Defaults to 'present'
|
2012-10-31 12:33:09 -07:00
|
|
|
#
|
2012-05-03 13:51:12 -05:00
|
|
|
class keystone::python (
|
2012-05-03 16:07:10 -05:00
|
|
|
$client_package_name = $keystone::params::client_package_name,
|
2012-05-08 14:52:23 -07:00
|
|
|
$ensure = 'present'
|
2012-05-03 16:07:10 -05:00
|
|
|
) inherits keystone::params {
|
2012-04-17 10:23:31 -07:00
|
|
|
|
2016-02-18 14:16:43 -07:00
|
|
|
warning('This class is deprecated, has no effect, and will be removed in Newton')
|
2012-04-17 10:23:31 -07:00
|
|
|
}
|