fix: [reset_ail] fix directory name

This commit is contained in:
Terrtia 2019-07-30 15:21:27 +02:00
parent 09ecc4d93f
commit 574b64b33b
No known key found for this signature in database
GPG key ID: 1E1B1F50D84613D0

View file

@ -6,52 +6,126 @@ GREEN="\\033[1;32m"
[ -z "$AIL_HOME" ] && echo "Needs the env var AIL_HOME. Run the script from the virtual environment." && exit 1; [ -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 function soft_reset {
num=$(( ( RANDOM % 100 ) + 1 )) # Access dirs and delete
cd $AIL_HOME
echo -e $RED"To reset the platform, enter the following number: "$DEFAULT $num # Kill all screens
read userInput screen -ls | grep Detached | cut -d. -f1 | awk '{print $1}' | xargs kill
if [ $userInput -eq $num ] set -e
then
# Access dirs and delete
cd $AIL_HOME
if [ -d indexdir/ ]; then
pushd indexdir/
rm -r *
echo 'cleaned indexdir'
popd
fi
if [ $userInput -eq $num ]
then
if [ -d DATA_ARDB/ ]; then
pushd DATA_ARDB/
rm -r *
echo 'cleaned DATA_ARDB'
popd
fi
fi
if [ -d logs/ ]; then
pushd logs/
rm *
echo 'cleaned logs'
popd
fi
if [ -d PASTES/ ]; then
pushd PASTES/
rm -r *
echo 'cleaned PASTES'
popd
fi
if [ -d HASHS/ ]; then
pushd HASHS/
rm -r *
echo 'cleaned HASHS'
popd
fi
if [ -d CRAWLED_SCREESHOT/ ]; then
pushd CRAWLED_SCREESHOT/
rm -r *
echo 'cleaned CRAWLED_SCREESHOT'
popd
fi
if [ -d temp/ ]; then
pushd temp/
rm -r *
echo 'cleaned temp'
popd
fi
if [ -d var/www/submitted/ ]; then
pushd var/www/submitted
rm -r *
echo 'cleaned submitted'
popd
fi
echo -e $GREEN"* AIL has been reset *"$DEFAULT
exit
}
#If no params,
[[ $@ ]] || {
# 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..." echo "Reseting AIL..."
else else
echo "Wrong number" echo "Wrong number"
exit 1; exit 1;
fi fi
num=$(( ( RANDOM % 100 ) + 1 ))
echo -e $RED"If yes you want to delete the DB , enter the following number: "$DEFAULT $num
read userInput
# Kill all screens set -e
screen -ls | grep Detached | cut -d. -f1 | awk '{print $1}' | xargs kill
set -e soft_reset;
# Access dirs and delete if [ $userInput -eq $num ]
cd $AIL_HOME then
if [ -d DATA_ARDB/ ]; then
pushd DATA_ARDB/
rm -r *
echo 'cleaned DATA_ARDB'
popd
fi
fi
pushd dumps/ echo -e $GREEN"* AIL has been reset *"$DEFAULT
rm *
echo 'cleaned dumps'
popd
pushd indexdir/ exit
rm -r * }
echo 'cleaned indexdir'
popd
pushd LEVEL_DB_DATA/ while [ "$1" != "" ]; do
rm -r * case $1 in
echo 'cleaned LEVEL_DB_DATA' --softReset ) soft_reset;
popd ;;
* ) exit 1
pushd logs/ esac
rm * shift
echo 'cleaned logs' done
popd
pushd PASTES/
rm -r *
echo 'cleaned PASTES'
popd
echo -e $GREEN"* AIL has been reset *"$DEFAULT