mirror of
https://github.com/element-hq/synapse.git
synced 2024-11-22 09:35:45 +03:00
5eb481cd5b
Use "${var:?}" to ensure this never expands to /* . https://github.com/koalaman/shellcheck/wiki/SC2115 Signed-off-by: Dan Callahan <danc@element.io>
19 lines
289 B
Bash
Executable file
19 lines
289 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
|