
The minimum version of puppetlabs-stdlib has been bumped globally, so now we can use the common type definition. Change-Id: Id05e7d78967eac898ddf8fe5f66d58722cbe7ace Signed-off-by: Takashi Kajinami <kajinamit@oss.nttdata.com>
25 lines
571 B
Puppet
25 lines
571 B
Puppet
# Class ironic::inspector::client
|
|
#
|
|
# Manages the ironic inspector client package on systems
|
|
#
|
|
# === Parameters:
|
|
#
|
|
# [*package_ensure*]
|
|
# (optional) The state of the package
|
|
# Defaults to present
|
|
#
|
|
class ironic::inspector::client (
|
|
Stdlib::Ensure::Package $package_ensure = present,
|
|
) {
|
|
include ironic::deps
|
|
include ironic::params
|
|
|
|
package { 'python-ironic-inspector-client':
|
|
ensure => $package_ensure,
|
|
name => $ironic::params::inspector_client_package,
|
|
tag => ['openstack', 'openstackclient'],
|
|
}
|
|
|
|
include openstacklib::openstackclient
|
|
}
|