Puppet Class: mofed::config
- Defined in:
- manifests/config.pp
Overview
2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
# File 'manifests/config.pp', line 2
class mofed::config {
assert_private()
if $mofed::manage_config {
$_shellvar_defaults = {
ensure => present,
target => $mofed::openib_config_path,
notify => $mofed::openib_shellvar_notify,
}
create_resources('shellvar', $mofed::openib_shellvars, $_shellvar_defaults)
}
}
|