mirror of
https://github.com/ail-project/ail-framework.git
synced 2024-11-14 02:28:23 +00:00
Added AIL reset script
This commit is contained in:
parent
2ae5080085
commit
85fb63141f
1 changed files with 57 additions and 0 deletions
57
reset_AIL.sh
Executable file
57
reset_AIL.sh
Executable 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
|
Loading…
Reference in a new issue