Puppet Class: profile::mariadb::wmfmariadbpy

Defined in:
modules/profile/manifests/mariadb/wmfmariadbpy.pp

Overview

Profile to setup and configure wmfmariadbpy libraries and utilities. When we have a more complete profile::mariadb::common we can probably fold this into that

Parameters:

  • role (Wmfmariadbpy::Role) (defaults to: lookup('profile::mariadb::wmfmariadbpy::role', {'default_value' => 'db'}))
  • section_ports (Hash[String, Stdlib::Port]) (defaults to: lookup('profile::mariadb::section_ports'))


4
5
6
7
8
9
10
11
12
# File 'modules/profile/manifests/mariadb/wmfmariadbpy.pp', line 4

class profile::mariadb::wmfmariadbpy (
    Wmfmariadbpy::Role         $role          = lookup('profile::mariadb::wmfmariadbpy::role', {'default_value' => 'db'}),
    Hash[String, Stdlib::Port] $section_ports = lookup('profile::mariadb::section_ports'),
) {
    class {'wmfmariadbpy':
        role          => $role,
        section_ports => $section_ports,
    }
}