84f1545a17
Change-Id: I7a6e8f4eaeb2274cc73e0b1ba22ec5f70c030646
26 lines
415 B
Puppet
26 lines
415 B
Puppet
# == Class: panko::client
|
|
#
|
|
# Installs the panko python library.
|
|
#
|
|
# === Parameters:
|
|
#
|
|
# [*ensure*]
|
|
# (Optional) Ensure state for pachage.
|
|
# Defaults to 'present'.
|
|
#
|
|
class panko::client (
|
|
$ensure = 'present'
|
|
) {
|
|
|
|
include ::panko::deps
|
|
include ::panko::params
|
|
|
|
package { 'python-pankoclient':
|
|
ensure => $ensure,
|
|
name => $::panko::params::client_package_name,
|
|
tag => 'openstack',
|
|
}
|
|
|
|
}
|
|
|