scriptita

This commit is contained in:
scossa 2024-08-19 20:16:00 +02:00
parent dda1a52edd
commit 9b3347e531
3 changed files with 4 additions and 4 deletions

View file

@ -3,11 +3,11 @@
# Script per cancellare tutti i record della table "markers"
# nano /var/www/html/leaflet/ruscomap/delete_rusco.sh
# Define database credentials
# Imposta credenziali
DB_USER="myuser"
DB_PASS="mypassword"
# Connect to MariaDB and execute commands
# Connetti al db e cancella la table markers
mariadb -u "$DB_USER" -p"$DB_PASS" <<EOF
USE ruscomap;
TRUNCATE TABLE markers;

View file

@ -3,7 +3,7 @@
# Script per cancellare tutti i record della table "markers" più vecchi di 24h (manuale)
# nano /var/www/html/leaflet/ruscomap/pulisci_manualmente_vecchio_rusco.sh
# Database credentials
# Imposta credenziali
DB_USER="myusername"
DB_PASS="mypassword"
DB_NAME="ruscomap"

View file

@ -3,7 +3,7 @@
# Script per cancellare tutti i record della table "markers" più vecchi di 24h (automatico)
# nano /var/www/html/leaflet/ruscomap/pulisci_vecchio_rusco.sh
# Database credentials
#Imposta credenziali
DB_USER="myusername"
DB_PASS="mypassword"
DB_NAME="ruscomap"