let's try again

This commit is contained in:
2024-08-24 22:33:09 +00:00
parent c53a41433d
commit 2502ae556d
1315 changed files with 0 additions and 2310 deletions
-13
View File
@@ -1,13 +0,0 @@
#!/bin/bash
echo "This will delete your existing database (./data/)"
echo " delete your recordings (./record/)"
echo " delete your drive files (./drive/)"
echo " delete your certs files (./nginx/ssl/)"
echo ""
read -p "Are you sure? " -n 1 -r
echo "" # (optional) move to a new line
if [[ $REPLY =~ ^[Yy]$ ]]; then # do dangerous stuff
chmod -R +x -- ./init
sudo rm -r -f ./data/ ./drive/ ./record/ ./nginx/ssl/
fi