From 85fb63141f27720b09cffc0dbd9c716cb0cedad2 Mon Sep 17 00:00:00 2001 From: = Date: Tue, 22 Aug 2017 17:16:06 +0200 Subject: [PATCH] Added AIL reset script --- reset_AIL.sh | 57 ++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 57 insertions(+) create mode 100755 reset_AIL.sh diff --git a/reset_AIL.sh b/reset_AIL.sh new file mode 100755 index 00000000..e87dfb67 --- /dev/null +++ b/reset_AIL.sh @@ -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