Files
freeplanet_serverside/scripts/mongodb_delete_database_production.sh
2022-08-01 15:49:27 +02:00

12 lines
258 B
Bash
Executable File

#!/bin/bash
db=FreePlanet
port=27017
read -p "*** DATABASE MONGODB -------- SEI VERAMENTE SICURO DI CANCELLARE IL DATABASE $db (Y/N) ? " risposta
if [[ $risposta == "Y" || $risposta == "y" ]]; then
mongo $db --port $port --eval "db.dropDatabase()"
fi