
The repo is inside the openstackclient plugin commands[1]. [1]https://docs.openstack.org/python-openstackclient/latest/cli/plugin-commands.html Change-Id: I224d78a4de42a86df251ac7a0eca873f442f5ffc
27 lines
565 B
Puppet
27 lines
565 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 (
|
|
$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', 'ironic-support-package'],
|
|
}
|
|
|
|
include '::openstacklib::openstackclient'
|
|
|
|
}
|