Adds a worker to automatically replicate data between storages and update the database accordingly
		
			
				
	
	
		
			8 lines
		
	
	
		
			No EOL
		
	
	
		
			159 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable file
		
	
	
	
	
			
		
		
	
	
			8 lines
		
	
	
		
			No EOL
		
	
	
		
			159 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable file
		
	
	
	
	
| #! /bin/bash
 | |
| 
 | |
| echo 'Starting storage replication worker'
 | |
| 
 | |
| cd /
 | |
| venv/bin/python -m workers.storagereplication 2>&1
 | |
| 
 | |
| echo 'Repository storage replication exited' |