puppet-octavia/manifests/client.pp
Takashi Kajinami c1c20ee0e8 Remove unused logic
The python-octaviaclient package is available in all distros we
currently support.

Change-Id: I7a0d4f170a2a58c635240ad7c305467df8f4af2e
2022-02-06 23:00:46 +09:00

24 lines
435 B
Puppet

# == Class: octavia::client
#
# Installs the octavia python library.
#
# === Parameters
#
# [*ensure*]
# (Optional) Ensure state for package.
#
class octavia::client (
$ensure = 'present'
) {
include octavia::deps
include octavia::params
package { 'python-octaviaclient':
ensure => $ensure,
name => $::octavia::params::client_package_name,
tag => 'openstack',
}
include openstacklib::openstackclient
}