Files
puppet-ironic/manifests/inspector/client.pp
Xingchao Yu fc2adf7fb8 Add support of ironic-inspector-client
Change-Id: Ibe76a9535f6fab9cbd20abed55318047a6e83152
2017-04-25 16:40:29 +08:00

25 lines
520 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'],
}
}