mirror of
				https://github.com/zulip/zulip.git
				synced 2025-11-03 21:43:21 +00:00 
			
		
		
		
	The inherits rule is required for overriding existing configuration files; while the `::profile` piece was missed in the recent ::profile migration.
		
			
				
	
	
		
			13 lines
		
	
	
		
			356 B
		
	
	
	
		
			Puppet
		
	
	
	
	
	
			
		
		
	
	
			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",
 | 
						|
  }
 | 
						|
}
 |