ce76a91f62
Change-Id: Ieb9a1d2c1dcef360ca7a323fe4f6cdbb61feecfe
27 lines
455 B
Puppet
27 lines
455 B
Puppet
# == Class: zaqar::client
|
|
#
|
|
# Installs the zaqar python library.
|
|
#
|
|
# === Parameters:
|
|
#
|
|
# [*ensure*]
|
|
# (Optional) Ensure state for pachage.
|
|
# Defaults to 'present'.
|
|
#
|
|
class zaqar::client (
|
|
$ensure = 'present'
|
|
) {
|
|
|
|
include zaqar::deps
|
|
include zaqar::params
|
|
|
|
package { 'python-zaqarclient':
|
|
ensure => $ensure,
|
|
name => $::zaqar::params::client_package_name,
|
|
tag => 'openstack',
|
|
}
|
|
|
|
include '::openstacklib::openstackclient'
|
|
|
|
}
|