Puppet Class: ironic::client
- Defined in:
- manifests/client.pp
Overview
29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 |
# File 'manifests/client.pp', line 29
class ironic::client (
$package_ensure = present
) {
include ironic::deps
include ironic::params
package { 'python-ironicclient':
ensure => $package_ensure,
name => $::ironic::params::client_package,
tag => ['openstack', 'ironic-support-package'],
}
include openstacklib::openstackclient
}
|