mirror of
				https://github.com/matrix-org/synapse.git
				synced 2025-11-03 17:51:20 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			15 lines
		
	
	
		
			252 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			252 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
#!/bin/bash
 | 
						|
 | 
						|
DIR="$( cd "$( dirname "$0" )" && pwd )"
 | 
						|
 | 
						|
FILES=$(find "$DIR" -name "*.pid" -type f);
 | 
						|
 | 
						|
for pid_file in $FILES; do
 | 
						|
    pid=$(cat "$pid_file")
 | 
						|
    if [[ $pid ]]; then
 | 
						|
        echo "Killing $pid_file with $pid"
 | 
						|
        kill $pid
 | 
						|
    fi
 | 
						|
done
 | 
						|
 |