
The minimum version of puppetlabs-stdlib has been bumped globally, so now we can use the common type definition. Change-Id: Ide3c9d927c25721001295faa105835928a95cf9d Signed-off-by: Takashi Kajinami <kajinamit@oss.nttdata.com>
28 lines
610 B
Puppet
28 lines
610 B
Puppet
# == Class: neutron::client
|
|
#
|
|
# Manages the neutron client package on systems
|
|
#
|
|
# === Parameters:
|
|
#
|
|
# [*package_ensure*]
|
|
# (optional) The state of the package
|
|
# Defaults to present
|
|
#
|
|
class neutron::client (
|
|
Stdlib::Ensure::Package $package_ensure = present
|
|
) {
|
|
include neutron::deps
|
|
include neutron::params
|
|
|
|
warning("The neutron::client class has been deprecated and will be removed \
|
|
in a future release.")
|
|
|
|
package { 'python-neutronclient':
|
|
ensure => $package_ensure,
|
|
name => $neutron::params::client_package,
|
|
tag => 'openstack',
|
|
}
|
|
|
|
include openstacklib::openstackclient
|
|
}
|