mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2024-10-01 11:49:51 -04:00
13f084eb58
Double quote to prevent globbing and word splitting. https://github.com/koalaman/shellcheck/wiki/SC2086 Signed-off-by: Dan Callahan <danc@element.io>
20 lines
297 B
Bash
Executable File
20 lines
297 B
Bash
Executable File
#!/usr/bin/env 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
|
|
|
|
for port in 8080 8081 8082; do
|
|
rm -rf "${DIR:?}/$port"
|
|
rm -rf "$DIR/media_store.$port"
|
|
done
|
|
|
|
rm -rf "${DIR:?}/etc"
|