You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
411 B
26 lines
411 B
# == 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',
|
|
}
|
|
|
|
}
|
|
|