(simatec) reindex added

This commit is contained in:
simatec 2024-06-14 00:01:51 +02:00
parent 4bbe4f5eda
commit d153e46675

View file

@ -246,6 +246,22 @@ else
docker-compose up --force-recreate --build -d docker-compose up --force-recreate --build -d
fi fi
while true; do
read -ep "Do you want to perform the Reindex?? (y/n): " yn
case $yn in
[Yy]* ) echo "${greenBold}********* Reindex started... Please wait... *********${normal}"; break;;
[Nn]* ) echo -e "${redBold} Update without Reindex!${normal}"; finish_info;;
* ) echo -e "${redBold} Please confirm with y or n.${normal}";;
esac
done
BLA::start_loading_animation "${BLA_metro[@]}"
docker exec -u piler -w /var/tmp piler reindex -a
BLA::stop_loading_animation
finish_info
function finish_info {
echo echo
echo "${greenBold}${HLINE}" echo "${greenBold}${HLINE}"
echo "${greenBold} Piler Update completed successfully" echo "${greenBold} Piler Update completed successfully"
@ -270,3 +286,4 @@ echo "${blue}Execute the following command: docker system prune"
echo "${blue}${HLINE}${normal}" echo "${blue}${HLINE}${normal}"
echo echo
exit 0 exit 0
}