Puppet Class: psick::foreman

Defined in:
manifests/foreman.pp

Overview

This class manages the installation and initialisation of foreman

Parameters:

  • ensure —

    If to install or remove foreman

  • template —

    The path to the erb template (as used in template()) to use to populate the Runner configuration file. Note that if you use the runners parameter this file is automatically generated during runners registration

  • options —

    An open hash of options you may use in your template

  • install_class (Optional[String]) (defaults to: 'psick::foreman::tp')


10
11
12
13
14
15
16
# File 'manifests/foreman.pp', line 10

class psick::foreman (
  Optional[String] $install_class = 'psick::foreman::tp',
) {

  if $install_class { contain $install_class }

}