Files
zulip/puppet/zulip_ops/manifests/profile/redis.pp
Tim Abbott ab3cb2b3bf puppet: Fix internal redis puppet configuration.
The inherits rule is required for overriding existing configuration
files; while the `::profile` piece was missed in the recent ::profile
migration.
2020-10-29 11:53:43 -07:00

13 lines
356 B
Puppet

class zulip_ops::profile::redis inherits zulip_ops::profile::base {
include zulip::profile::redis
# Need redis_password in its own file for Nagios
file { '/var/lib/nagios/redis_password':
ensure => file,
mode => '0600',
owner => 'nagios',
group => 'nagios',
content => "${zulip::profile::redis::redis_password}\n",
}
}