Puppet Class: bmc::install
- Inherits:
- bmc
- Defined in:
- manifests/install.pp
Overview
Install ipmitools
3 4 5 6 7 8 9 |
# File 'manifests/install.pp', line 3
class bmc::install () inherits bmc {
if $::bmc::oem_software {
if 'dell' in $::bmc::oem_software { contain '::bmc::oem::omsa' }
if 'ipmi' in $::bmc::oem_software { contain '::bmc::oem::ipmi' }
}
}
|