File: client.pp

package info (click to toggle)
puppet-module-panko 13.3.1-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 508 kB
  • sloc: ruby: 1,366; python: 40; sh: 15; makefile: 8
file content (25 lines) | stat: -rw-r--r-- 415 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
24
25
# == 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',
  }

}