File: client.pp

package info (click to toggle)
puppet-module-octavia 25.0.0-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,588 kB
  • sloc: ruby: 3,940; python: 38; makefile: 12; sh: 10
file content (23 lines) | stat: -rw-r--r-- 456 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# == 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', 'openstackclient'],
  }
  include openstacklib::openstackclient
}