Puppet Class: helix::proxy

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

Overview

Class: helix::proxy

Manages the helix proxy (p4p).

Parameters


  • ‘pkgname`

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

Parameters:

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


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

class helix::proxy (
  $pkgname = $helix::params::helix_proxy_pkg,
) inherits helix::params  {

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

}