Puppet Class: storm::params
- Inherited by:
-
storm::webdav::params
storm::backend::params
storm::gridftp::params
storm::frontend::params
- Defined in:
- manifests/params.pp
Summary
StoRM params classOverview
storm class default parameters
5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
# File 'manifests/params.pp', line 5
class storm::params {
case $::osfamily {
'RedHat': {
# Only RedHat family is supported.
}
# In any other case raise error:
default: {
fail("StoRM module not supported on ${::osfamily}/${::operatingsystem}.")
}
}
}
|