Puppet Class: redis::globals
- Inherited by:
-
redis::params
- Defined in:
- manifests/globals.pp
Summary
Set a global config for RedisOverview
5 6 7 8 9 10 11 |
# File 'manifests/globals.pp', line 5
class redis::globals (
Optional[String] $scl = undef,
) {
if $scl and $facts['os']['family'] != 'RedHat' {
fail('SCLs are only supported on the Red Hat OS family')
}
}
|