Puppet Class: helix::broker

Inherits:
helix::params
Defined in:
manifests/broker.pp

Overview

Class: helix::broker

Manages the helix broker (p4broker).

Parameters


  • ‘pkgname`

This parameter can be used to specify the package name of the helix broker. The default value (helix-broker) is provided by the helix_broker_pkg variable in the helix::params class

Parameters:

  • pkgname (Any) (defaults to: $helix::params::helix_broker_pkg)


13
14
15
16
17
18
19
20
21
# File 'manifests/broker.pp', line 13

class helix::broker (
  $pkgname = $helix::params::helix_broker_pkg,
) inherits helix::params  {

  helix::package { $pkgname:
    pkgname => $pkgname,
  }

}