amélioration du backup

This commit is contained in:
MaelReboux 2019-01-12 14:24:17 +01:00
parent 01552e0bbf
commit 541f4f3490
2 changed files with 18 additions and 3 deletions

View file

@ -0,0 +1,2 @@
ici les fichiers sauvegardés automatiquement

View file

@ -1,4 +1,4 @@
#!/bin/sh
#!/bin/bash
cd /data/www/vhosts/ar-redadeg/htdocs/scripts/backup/
@ -6,7 +6,20 @@ cd /data/www/vhosts/ar-redadeg/htdocs/scripts/backup/
# on récupère les couches geojson depuis umap pour sauvegarde au cas où
# le tracé manuel
curl -sS http://umap.openstreetmap.fr/fr/datalayer/715180/ > "$(date +%Y%m%d)_$(date +%H%M)_phase_1_trace.geojson"
curl -sS http://umap.openstreetmap.fr/fr/datalayer/715180/ > "jour_courant/$(date +%Y%m%d)_$(date +%H%M)_phase_1_trace.geojson"
# PK VIP
curl -sS http://umap.openstreetmap.fr/fr/datalayer/715179/ > "$(date +%Y%m%d)_$(date +%H%M)_phase_1_pk_vip.geojson"
curl -sS http://umap.openstreetmap.fr/fr/datalayer/715179/ > "jour_courant/$(date +%Y%m%d)_$(date +%H%M)_phase_1_pk_vip.geojson"
# et on remonte d'un niveau ceux cd 06h 13h et 18h
# si le nom du fichier matche le motif regexp
# on copie le fichier dans un autre répertoire
for f in jour_courant/*.geojson
do
if [[ $f =~ [0-9]{8}_(0600|1300|1800)_* ]]
then cp jour_courant/$f ./
fi
done