mirror of
				https://github.com/zulip/docker-zulip.git
				synced 2025-10-31 12:03:34 +00:00 
			
		
		
		
	The entrypoint.sh is now a fully functional setup and run script for zulip installations in docker.
		
			
				
	
	
		
			21 lines
		
	
	
		
			586 B
		
	
	
	
		
			Puppet
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			586 B
		
	
	
	
		
			Puppet
		
	
	
	
	
	
| class zulip::supervisor {
 | |
|   $supervisor_packages = [# Needed to run supervisor
 | |
|                           "supervisor",
 | |
|                           ]
 | |
|   package { $supervisor_packages: ensure => "installed" }
 | |
|   file { "/etc/supervisor/supervisord.conf":
 | |
|     require => Package[supervisor],
 | |
|     ensure => file,
 | |
|     owner => "root",
 | |
|     group => "root",
 | |
|     mode => 644,
 | |
|     source => "puppet:///modules/zulip/supervisor/supervisord.conf",
 | |
|   }
 | |
|   file { '/etc/supervisor/conf.d':
 | |
|     require => Package[supervisor],
 | |
|     ensure => 'directory',
 | |
|     owner  => 'root',
 | |
|     group  => 'root',
 | |
|   }
 | |
| }
 |