Puppet Class: poolcounter::client::python

Defined in:
modules/poolcounter/manifests/client/python.pp

Overview

SPDX-License-Identifier: Apache-2.0 Installs the base configuration file for running poolcounter-enabled python applications, and the corresponding client

Parameters:

  • ensure (Wmflib::Ensure)
  • backends (Poolcounter::Backends)


4
5
6
7
8
9
10
11
12
13
14
15
16
# File 'modules/poolcounter/manifests/client/python.pp', line 4

class poolcounter::client::python(
    Wmflib::Ensure $ensure,
    Poolcounter::Backends $backends
) {
    package { 'python3-poolcounter':
        ensure => $ensure,
    }

    class { 'poolcounter::client':
        ensure   => $ensure,
        backends => $backends,
    }
}