mirror of
				https://github.com/optim-enterprises-bv/Mailu.git
				synced 2025-10-31 18:18:05 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			10 lines
		
	
	
		
			215 B
		
	
	
	
		
			Python
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
		
			215 B
		
	
	
	
		
			Python
		
	
	
		
			Executable File
		
	
	
	
	
| #!/usr/bin/python3
 | |
| 
 | |
| import os
 | |
| 
 | |
| # Fix some permissions
 | |
| os.system("mkdir -p /data/gpg")
 | |
| os.system("chown -R www-data:www-data /data")
 | |
| 
 | |
| # Run apache
 | |
| os.execv("/usr/local/bin/apache2-foreground", ["apache2-foreground"]) | 
