303e514db0
Some users wish to override the default package provider by their own. Tag all packages with the 'openstack' to allow mass resource attributes override using resource collectors. Change-Id: Ic662043bcd19a930a47a6716be051561fceef5d7 Closes-bug: #1391209 Signed-off-by: Gael Chamoulaud <gchamoul@redhat.com>
23 lines
413 B
Puppet
23 lines
413 B
Puppet
# == Class: sahara::client
|
|
#
|
|
# Installs the sahara python library.
|
|
#
|
|
# === Parameters
|
|
#
|
|
# [*package_ensure*]
|
|
# (Optional) Ensure state for package.
|
|
# Default: present.
|
|
#
|
|
class sahara::client (
|
|
$package_ensure = 'present'
|
|
) {
|
|
|
|
include ::sahara::params
|
|
|
|
package { 'python-saharaclient':
|
|
ensure => $package_ensure,
|
|
name => $::sahara::params::client_package_name,
|
|
tag => 'openstack',
|
|
}
|
|
}
|