Files
puppet-ironic/manifests/inspector/client.pp
ZhongShengping 650a1e5465 Add openstackclient installation to the client class
The repo is inside the openstackclient plugin commands[1].

[1]https://docs.openstack.org/python-openstackclient/latest/cli/plugin-commands.html

Change-Id: I224d78a4de42a86df251ac7a0eca873f442f5ffc
2019-05-17 16:31:18 +08:00

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'
}