Puppet Class: root::params
- Inherited by:
-
root
- Defined in:
- manifests/params.pp
Summary
Private classOverview
3 4 5 6 7 8 9 10 11 12 13 |
# File 'manifests/params.pp', line 3
class root::params {
case $facts['kernel'] {
'Linux': {
# Do nothing
}
default: {
fail("Unsupported kernel: ${facts['kernel']}, module ${module_name} only support kernel Linux")
}
}
}
|