Puppet Class: bmc

Inherited by:
bmc::config
bmc::install
bmc::oem::ipmi
bmc::oem::omsa
Defined in:
manifests/init.pp

Overview

Class: bmc

Baseboard Management Controller

Parameters:

ensure: Control the existences of software used by bmc module. specific versions can be controlled in the oem classes. manage_oem_repo: Should 3rd party OEM repositry be managed. oem_software: What 3rd party OEM should be installed.

Actions:

Requires: see Modulefile

Sample Usage: look at README.md

Parameters:

  • ensure (Enum['present', 'absent', 'purged', 'latest'])
  • manage_oem_repo (Boolean)
  • oem_software (Optional[Array[Enum['dell', 'ipmi']]])


18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
# File 'manifests/init.pp', line 18

class bmc (
  Enum['present', 'absent', 'purged', 'latest']$ensure,
  Boolean $manage_oem_repo,
  Optional[Array[Enum['dell', 'ipmi']]] $oem_software,
) {

  if $ensure == 'present' or $ensure == 'latest' {
    Class['::bmc::install']
    -> Class['::bmc::config']
  } elsif $ensure == 'purged' or $ensure == 'absent' {
    Class['::bmc::config']
    -> Class['::bmc::install']
  }

  contain '::bmc::install'
  contain '::bmc::config'
}