Codebase list matrix-synapse / debian/1.24.0-1 demo / stop.sh
debian/1.24.0-1

Tree @debian/1.24.0-1 (Download .tar.gz)

stop.sh @debian/1.24.0-1raw · history · blame

#!/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