mirror of
				https://github.com/optim-enterprises-bv/Mailu.git
				synced 2025-10-31 10:08:02 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			13 lines
		
	
	
		
			233 B
		
	
	
	
		
			Python
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			233 B
		
	
	
	
		
			Python
		
	
	
		
			Executable File
		
	
	
	
	
| #!/usr/bin/python3
 | |
| 
 | |
| import os
 | |
| 
 | |
| # Bootstrap the database if clamav is running for the first time
 | |
| os.system("[ -f /data/main.cvd ] || freshclam")
 | |
| 
 | |
| # Run the update daemon
 | |
| os.system("freshclam -d -c 6")
 | |
| 
 | |
| # Run clamav
 | |
| os.system("clamd")
 | 
