mirror of
				https://github.com/zokradonh/kopano-docker
				synced 2025-10-31 02:17:47 +00:00 
			
		
		
		
	* add small wrapper scripts to honor admin.cfg at /tmp/kopano * add script to create stores (workaround to satisfy tests) * add output of orphaned store list to startup test
		
			
				
	
	
		
			6 lines
		
	
	
		
			167 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			6 lines
		
	
	
		
			167 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
| #!/bin/bash
 | |
| 
 | |
| for kuser in $(kopano-storeadm -O | grep -A999999999 "Entities without stores:" | tail -n +4 | awk '{print $2}'); do
 | |
| 	kopano-storeadm -n "$kuser" -C
 | |
| done
 |