File: client.pp

package info (click to toggle)
puppet-module-ironic 27.0.0-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 2,612 kB
  • sloc: ruby: 5,990; python: 33; makefile: 10; sh: 10
file content (24 lines) | stat: -rw-r--r-- 571 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# 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
}