segnala_errori
This commit is contained in:
parent
af231d2b3c
commit
e0db8ed91d
1 changed files with 5 additions and 5 deletions
|
@ -4,19 +4,19 @@
|
|||
# nano /var/www/html/leaflet/ruscomap/AggiornaRuscoMap.sh
|
||||
|
||||
echo -e "Stoppo ruscomap..."
|
||||
systemctl stop ruscomap.service
|
||||
systemctl stop ruscomap.service || echo -e "\nErrore nell'arrestare ruscomap!\n"
|
||||
sleep 1
|
||||
|
||||
cd /var/www/html/leaflet/ruscomap
|
||||
echo -e "\nEseguo git pull..."
|
||||
git pull
|
||||
git pull || echo -e "\nErrore git!\n" && systemctl restart ruscomap.service && exit 0
|
||||
sleep 1
|
||||
|
||||
echo -e "Do permessi www-data..."
|
||||
chown -R www-data:www-data /var/www/html/leaflet/ruscomap/public
|
||||
chown -R www-data:www-data /var/www/html/leaflet/ruscomap/public || echo -e "\nErrorenel dare i permessi a /var/www/html/leaflet/ruscomap/public\n"
|
||||
|
||||
echo -e "restarto apache e ruscmap"...
|
||||
systemctl restart apache2.service
|
||||
systemctl start ruscomap.service
|
||||
systemctl restart apache2.service || echo -e "\nErrore nel restart di apache2.service\n" && exit
|
||||
systemctl start ruscomap.service || echo -e "\nErrore nel restart di ruscomap.service\n" && exit
|
||||
|
||||
echo -e "Aggiornamento completato!\n"
|
Loading…
Reference in a new issue