versionecologique/synchro.sh
Michael RICOIS 545f602be7 Oups
2017-08-31 14:40:55 +02:00

42 lines
1.8 KiB
Bash
Executable File

#!/bin/bash
clear
ONLYPULL=1
echo "Start sync\n";
if [ $ONLYPULL -eq 0 ]; then
#Dump local database
echo "Exporting the local Database"
mysqldump -h 192.168.0.41 -u root versionecologique > versionecologique.sql
printf "Export complete => file versionecologique.sql has been created\n"
printf "Replacing shop names\n"
sed -i -e 's/versionecologique.local/versionecologique.preprod.antadis.fr/g' versionecologique.sql
printf "Sending the Database dump to the preprod server"
PORT="4096"
rsync -e "ssh -p$PORT" -az ./versionecologique.sql root@versionecologique.preprod.antadis.fr:/home/www/versionecologique.preprod.antadis.fr
printf "Sending complete\n"
#printf "importing the Database on the preprod server\n"
ssh root@versionecologique.preprod.antadis.fr -p4096 "cd /home/www/versionecologique.preprod.antadis.fr \\
&& git pull origin master \\
&& mysql -u versionecologique -pShoh5Re5 versionecologique < versionecologique.sql \\
&& if [ -f /home/www/versionecologique.preprod.antadis.fr/www/cache/class_index.php ] ; then rm /home/www/versionecologique.preprod.antadis.fr/www/cache/class_index.php ; fi \\
&& mkdir -p /home/www/versionecologique.preprod.antadis.fr/www/{log,upload} \\
&& chown -R www-data:www-data www/* \\
"
else
#printf "importing the Database on the preprod server\n"
ssh root@versionecologique.preprod.antadis.fr -p4096 "cd /home/www/versionecologique.preprod.antadis.fr \\
&& git pull origin master \\
&& if [ -f /home/www/versionecologique.preprod.antadis.fr/www/cache/class_index.php ] ; then rm /home/www/versionecologique.preprod.antadis.fr/www/cache/class_index.php ; fi \\
&& mkdir -p /home/www/versionecologique.preprod.antadis.fr/www/{log,upload} \\
&& chown -R www-data:www-data www/* \\
"
fi
printf "Sync complete !! \n"