scriptita
This commit is contained in:
parent
dda1a52edd
commit
9b3347e531
3 changed files with 4 additions and 4 deletions
|
@ -3,11 +3,11 @@
|
||||||
# Script per cancellare tutti i record della table "markers"
|
# Script per cancellare tutti i record della table "markers"
|
||||||
# nano /var/www/html/leaflet/ruscomap/delete_rusco.sh
|
# nano /var/www/html/leaflet/ruscomap/delete_rusco.sh
|
||||||
|
|
||||||
# Define database credentials
|
# Imposta credenziali
|
||||||
DB_USER="myuser"
|
DB_USER="myuser"
|
||||||
DB_PASS="mypassword"
|
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
|
mariadb -u "$DB_USER" -p"$DB_PASS" <<EOF
|
||||||
USE ruscomap;
|
USE ruscomap;
|
||||||
TRUNCATE TABLE markers;
|
TRUNCATE TABLE markers;
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
# Script per cancellare tutti i record della table "markers" più vecchi di 24h (manuale)
|
# 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
|
# nano /var/www/html/leaflet/ruscomap/pulisci_manualmente_vecchio_rusco.sh
|
||||||
|
|
||||||
# Database credentials
|
# Imposta credenziali
|
||||||
DB_USER="myusername"
|
DB_USER="myusername"
|
||||||
DB_PASS="mypassword"
|
DB_PASS="mypassword"
|
||||||
DB_NAME="ruscomap"
|
DB_NAME="ruscomap"
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
# Script per cancellare tutti i record della table "markers" più vecchi di 24h (automatico)
|
# Script per cancellare tutti i record della table "markers" più vecchi di 24h (automatico)
|
||||||
# nano /var/www/html/leaflet/ruscomap/pulisci_vecchio_rusco.sh
|
# nano /var/www/html/leaflet/ruscomap/pulisci_vecchio_rusco.sh
|
||||||
|
|
||||||
# Database credentials
|
#Imposta credenziali
|
||||||
DB_USER="myusername"
|
DB_USER="myusername"
|
||||||
DB_PASS="mypassword"
|
DB_PASS="mypassword"
|
||||||
DB_NAME="ruscomap"
|
DB_NAME="ruscomap"
|
||||||
|
|
Loading…
Reference in a new issue