mirror of https://github.com/watcha-fr/synapse
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
232 B
17 lines
232 B
10 years ago
|
#!/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
|
||
|
|