Puppet Class: redis::globals

Inherited by:
redis::params
Defined in:
manifests/globals.pp

Summary

Set a global config for Redis

Overview

Parameters:

  • scl (Optional[String]) (defaults to: undef)

    Use a specific Software Collection on Red Hat 7 based systems



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')
  }
}