Added AIL reset script

pull/137/head
= 2017-08-22 17:16:06 +02:00
parent 2ae5080085
commit 85fb63141f
1 changed files with 57 additions and 0 deletions

57
reset_AIL.sh Executable file
View File

@ -0,0 +1,57 @@
#!/bin/bash
RED="\\033[1;31m"
DEFAULT="\\033[0;39m"
GREEN="\\033[1;32m"
[ -z "$AIL_HOME" ] && echo "Needs the env var AIL_HOME. Run the script from the virtual environment." && exit 1;
# Make sure the reseting is intentional
num=$(( ( RANDOM % 100 ) + 1 ))
echo -e $RED"To reset the platform, enter the following number: "$DEFAULT $num
read userInput
if [ $userInput -eq $num ]
then
echo "Reseting AIL..."
else
echo "Wrong number"
exit 1;
fi
# Kill all screens
screen -ls | grep Detached | cut -d. -f1 | awk '{print $1}' | xargs kill
set -e
# Access dirs and delete
cd $AIL_HOME
pushd dumps/
rm *
echo 'cleaned dumps'
popd
pushd indexdir/
rm -r *
echo 'cleaned indexdir'
popd
pushd LEVEL_DB_DATA/
rm -r *
echo 'cleaned LEVEL_DB_DATA'
popd
pushd logs/
rm *
echo 'cleaned logs'
popd
pushd PASTES/
rm -r *
echo 'cleaned PASTES'
popd
echo -e $GREEN"* AIL has been reset *"$DEFAULT