Puppet Class: st2::profile::redis
- Inherits:
- st2
- Defined in:
- manifests/profile/redis.pp
Summary
StackStorm compatable installation of Redis.Overview
| 14 15 16 17 18 19 20 21 22 23 | # File 'manifests/profile/redis.pp', line 14
class st2::profile::redis (
  String  $bind_ip = $st2::redis_bind_ip,
) inherits st2 {
  class { 'redis':
      bind => $bind_ip,
  }
  contain redis
} |