Jeremy Stanley d3a34d0989 Upgrade to latest EtherCalc (0.20200505.0)
We're four years behind on EtherCalc releases, and suddenly hitting
a crash exception which was fixed in a newer release three years
ago. According to the current readme we're running plenty new enough
dependencies, so this should be a drop-in replacement. Of course
we'll make an extra database backup immediately before hand, just to
be safe.

Change-Id: Iec59692fea0a1e31e1bd7b8e03145f7384d9e59b
2020-08-21 12:14:35 -07:00

18 lines
437 B
Puppet

# == Class: ethercalc::redis
#
class ethercalc::redis(
$redis_port = '6379',
$redis_max_memory = '1gb',
$redis_bind = '127.0.0.1',
$redis_password = undef,
$redis_version = '2.8.4',
) {
class { 'redis':
redis_port => $redis_port,
redis_max_memory => $redis_max_memory,
redis_bind => $redis_bind,
redis_password => $redis_password,
version => $redis_version ,
}
}