mirror of
				https://github.com/matrix-org/synapse.git
				synced 2025-11-04 02:01:03 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			18 lines
		
	
	
		
			248 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			248 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
#!/bin/bash
 | 
						|
 | 
						|
set -e
 | 
						|
 | 
						|
DIR="$( cd "$( dirname "$0" )" && pwd )"
 | 
						|
 | 
						|
PID_FILE="$DIR/servers.pid"
 | 
						|
 | 
						|
if [ -f $PID_FILE ]; then
 | 
						|
    echo "servers.pid exists!"
 | 
						|
    exit 1
 | 
						|
fi
 | 
						|
 | 
						|
find "$DIR" -name "*.log" -delete
 | 
						|
find "$DIR" -name "*.db" -delete
 | 
						|
 | 
						|
rm -rf $DIR/etc
 |