Puppet Class: mock::params
- Inherited by:
-
mock
- Defined in:
- manifests/params.pp
Overview
2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
# File 'manifests/params.pp', line 2
class mock::params {
case $::osfamily {
'RedHat': {
$group_name = 'mock'
$package_name = 'mock'
}
default: {
fail("Unsupported osfamily: ${::osfamily}, module ${module_name} only support osfamily RedHat")
}
}
}
|